Adding react-helmet and starting on a Layout component

This commit is contained in:
Jeff Avallone
2019-01-02 18:51:23 -05:00
parent 49f3c16c2c
commit bad4b4be73
5 changed files with 65 additions and 4 deletions
+5 -1
View File
@@ -1,5 +1,9 @@
import React from 'react';
const IndexPage = () => <div>Hello world</div>;
import Layout from 'components/Layout';
const IndexPage = () => <Layout>
<div>Hello world</div>
</Layout>;
export default IndexPage;