mirror of
https://github.com/wassname/talk.git
synced 2026-07-18 12:40:13 +08:00
13 lines
266 B
JavaScript
13 lines
266 B
JavaScript
import React from 'react';
|
|
import {Layout as LayoutMDL} from 'react-mdl';
|
|
import Header from './Header';
|
|
import Drawer from './Drawer';
|
|
|
|
export const Layout = ({children}) => (
|
|
<LayoutMDL fixedDrawer>
|
|
<Header />
|
|
<Drawer />
|
|
{children}
|
|
</LayoutMDL>
|
|
);
|