Added poly section

This commit is contained in:
2018-03-01 06:01:05 +11:00
parent 184e548dd4
commit 300bde972d
20 changed files with 495 additions and 12 deletions

View 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;