Files
Webserver/components/mdx/SideNote.tsx

9 lines
259 B
TypeScript
Raw Normal View History

2026-02-07 20:17:46 -05:00
export function SideNote({ children, title }: { children: React.ReactNode; title?: string }) {
return (
2026-04-11 23:27:29 -04:00
<span role="note" className="side-note">
{title ? <strong>{title}</strong> : null}
{children}
</span>
2026-02-07 20:17:46 -05:00
);
}