4 changed files with 42 additions and 1 deletions
@ -0,0 +1,15 @@ |
|||
import React, { PureComponent } from 'react' |
|||
|
|||
import Box from 'components/base/Box' |
|||
|
|||
class SideBar extends PureComponent { |
|||
render() { |
|||
return ( |
|||
<Box bg="night" py={3} noShrink style={{ width: 250 }}> |
|||
{''} |
|||
</Box> |
|||
) |
|||
} |
|||
} |
|||
|
|||
export default SideBar |
@ -0,0 +1,15 @@ |
|||
import React, { PureComponent } from 'react' |
|||
|
|||
import Box from 'components/base/Box' |
|||
|
|||
class TopBar extends PureComponent { |
|||
render() { |
|||
return ( |
|||
<Box bg="white" noShrink style={{ height: 60 }}> |
|||
{''} |
|||
</Box> |
|||
) |
|||
} |
|||
} |
|||
|
|||
export default TopBar |
Loading…
Reference in new issue