import { BackTop, Layout as _Layout } from "tiny-ui";
import { Menu } from ".";
const { Header, Footer, Content } = _Layout;
const layoutStyle = {
marginBottom: "2rem"
};
const headerStyle = {
position: "sticky",
top: "0"
};
const contentStyle = {
minHeight: "200px",
lineHeight: "1rem"
};
const footerStyle = {
textAlign: "right",
fontSize: ".77rem",
color: "#777"
};
const Layout = ({ page, children, ...rest }) => {
return (
<_Layout style={layoutStyle}>
{children}
);
};
export default Layout;