mirror of
https://github.com/wassname/talk.git
synced 2026-07-11 00:35:52 +08:00
33 lines
844 B
JavaScript
33 lines
844 B
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import {Layout as LayoutMDL} from 'react-mdl';
|
|
import Header from './Header';
|
|
import Drawer from './Drawer';
|
|
import styles from './Layout.css';
|
|
|
|
const Layout = ({
|
|
children,
|
|
handleLogout = () => {},
|
|
toggleShortcutModal,
|
|
restricted = false,
|
|
...props}) => (
|
|
<LayoutMDL className={styles.layout} fixedDrawer>
|
|
<Header
|
|
handleLogout={handleLogout}
|
|
showShortcuts={toggleShortcutModal}
|
|
{...props} />
|
|
<Drawer handleLogout={handleLogout} restricted={restricted} {...props} />
|
|
<div className={styles.layout}>
|
|
{children}
|
|
</div>
|
|
</LayoutMDL>
|
|
);
|
|
|
|
Layout.propTypes = {
|
|
handleLogout: PropTypes.func,
|
|
toggleShortcutModal: PropTypes.func,
|
|
restricted: PropTypes.bool // hide elements from a user that's logged out
|
|
};
|
|
|
|
export default Layout;
|