Created
December 17, 2018 07:12
-
-
Save tai2/beabb3f4a480507fddc3ca731006f579 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import { LayoutManager, NavigationProvider } from '../../../src'; | |
export default () => ( | |
<NavigationProvider> | |
<LayoutManager | |
globalNavigation={() => null} | |
productNavigation={() => null} | |
containerNavigation={() => null} | |
> | |
<div css={{ padding: '32px 40px' }}>Page content goes here.</div> | |
</LayoutManager> | |
</NavigationProvider> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment