20CAKE20.JS
06-components

Components

23

06-components/PageShell.tsx

Page Shell

Support

Support source used by the official components examples.

export type Props = {
  header?: View;
  children?: View;
  footer?: View;
};

export default (props: Props) => (
  <div class="min-h-screen">
    <header>{props.header}</header>
    <main>{props.children}</main>
    <footer>{props.footer}</footer>
  </div>
);