Added poly section
This commit is contained in:
29
public/components/sections/BodySection.jsx
Normal file
29
public/components/sections/BodySection.jsx
Normal file
@ -0,0 +1,29 @@
|
||||
/*
|
||||
* Body Section
|
||||
* Section for content bodies.
|
||||
*
|
||||
* Dependencies:
|
||||
* styles/components/_section--style-body.scss
|
||||
*
|
||||
* Version:
|
||||
* 1.0.0 - 2018/03/01
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
import Section from './../Section';
|
||||
|
||||
class BodySection extends React.Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<Section section="body">
|
||||
{this.props.children}
|
||||
</Section>
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
export default BodySection;
|
Reference in New Issue
Block a user