mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-18 14:41:41 +03:00
17 lines
379 B
JavaScript
17 lines
379 B
JavaScript
|
import React from 'react'
|
||
|
import TopNavbar from './TopNavbar'
|
||
|
import TagsSidebar from './TagsSidebar'
|
||
|
import './Layout.css'
|
||
|
|
||
|
const Layout = ({ user, activeTag, children }) => (
|
||
|
<div className='layout-root'>
|
||
|
<TopNavbar user={user} />
|
||
|
<div className='layout-content'>
|
||
|
<TagsSidebar active={activeTag} />
|
||
|
{children}
|
||
|
</div>
|
||
|
</div>
|
||
|
)
|
||
|
|
||
|
export default Layout
|