Added poly section
This commit is contained in:
28
public/components/Page.jsx
Normal file
28
public/components/Page.jsx
Normal file
@ -0,0 +1,28 @@
|
||||
/*
|
||||
* Page
|
||||
* Simple Page wrapper/container.
|
||||
*
|
||||
* Dependencies:
|
||||
* styles/components/_page.scss
|
||||
*
|
||||
* Version:
|
||||
* 1.0.0 - 2018/02/24
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
|
||||
class Page extends React.Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<main className="c-page">
|
||||
{this.props.children}
|
||||
</main>
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
export default Page;
|
Reference in New Issue
Block a user