Added poly section
This commit is contained in:
32
public/components/pages/IndexPage.jsx
Normal file
32
public/components/pages/IndexPage.jsx
Normal file
@ -0,0 +1,32 @@
|
||||
/*
|
||||
* Index Page
|
||||
* Homepage.
|
||||
*
|
||||
* Version:
|
||||
* 1.0.1 - 2018/03/01
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import Page from './../Page';
|
||||
import Poly from './../sections/Poly';
|
||||
import BodySection from './../sections/BodySection';
|
||||
|
||||
class IndexPage extends React.Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<Page>
|
||||
<Poly />
|
||||
<BodySection>
|
||||
Lorem
|
||||
</BodySection>
|
||||
</Page>
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
export default IndexPage;
|
Reference in New Issue
Block a user