Skip to main content

Layout

Main layout container. Contains global styles and the burger menu.

Props

  • children = {React.ReactNode}
    • React children prop

Example with code

import Layout from '@components/Layout';

const MyComponent = () => {
return (
<Layout>
<Header />
<Body>
Your content
</Body>
<Footer />
</Layout>
);
};