From 7af74ff8988961c988f03c95961b70c2918521ae Mon Sep 17 00:00:00 2001 From: Wes Bos Date: Fri, 25 Aug 2017 09:33:53 -0400 Subject: yay --- components/Page.js | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 components/Page.js (limited to 'components/Page.js') diff --git a/components/Page.js b/components/Page.js new file mode 100644 index 0000000..1b07fe6 --- /dev/null +++ b/components/Page.js @@ -0,0 +1,25 @@ +import Header from './Header' +import Meta from './Meta' +import withData from '../lib/withData'; +import Nav from './Nav'; +import styled from 'styled-components'; + +const StyledPage = styled.div` + font-family: sans-serif; + color: #303030; + background: #efc600; + padding: 100px; +`; + +const Page = ({ children }) => ( + + +
+ +
+ { children } +
+ +) + +export default withData(Page); -- cgit v1.3