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>
);