20CAKE20.JS
06-components

Components

23

06-components/Panel.tsx

Panel

Support

Support source used by the official components examples.

export type Props = {
  title: string;
  children?: View;
};

export default (props: Props) => (
  <section class="rounded border p-4">
    <h2 class="font-bold">{props.title}</h2>
    <div class="mt-3">{props.children}</div>
  </section>
);