cal.pub0.org/apps/storybook/components/Note.tsx

6 lines
140 B
TypeScript

export const Note = ({ children }: { children: React.ReactNode }) => (
<div className="story-note">
<div>{children}</div>
</div>
);