Adding react-helmet and starting on a Layout component
This commit is contained in:
+5
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user