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: ".8rem", color: "rgba(255,255,255,0.75)" }; const Layout = ({ page, children, ...rest }) => { return ( <_Layout style={layoutStyle}>
{children} ); }; export default Layout;