diff options
| author | Wes Bos <wesbos@gmail.com> | 2017-10-27 10:10:49 -0400 |
|---|---|---|
| committer | Wes Bos <wesbos@gmail.com> | 2017-10-27 10:10:49 -0400 |
| commit | acdfa2840f867e686471a8e9ac3f29353fab7dd1 (patch) | |
| tree | 1a069ce11e145d9b286084221951272511debbdf /components/Page.js | |
| parent | 6f44adb59d3542eb21e55e0aae789b1fcc7cf8f1 (diff) | |
hi
Diffstat (limited to 'components/Page.js')
| -rw-r--r-- | components/Page.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/components/Page.js b/components/Page.js index 50a6135..f45d421 100644 --- a/components/Page.js +++ b/components/Page.js @@ -1,7 +1,8 @@ +import styled from 'styled-components'; import Header from './Header'; import Meta from './Meta'; import Nav from './Nav'; -import styled from 'styled-components'; +import CartList from './CartList'; const StyledPage = styled.div` font-family: sans-serif; @@ -15,6 +16,7 @@ const Page = ({ children }) => ( <Meta /> <Nav /> <Header /> + <CartList /> {children} </StyledPage> ); |
