9 lines
259 B
TypeScript
9 lines
259 B
TypeScript
export function SideNote({ children, title }: { children: React.ReactNode; title?: string }) {
|
|
return (
|
|
<span role="note" className="side-note">
|
|
{title ? <strong>{title}</strong> : null}
|
|
{children}
|
|
</span>
|
|
);
|
|
}
|