Files
Webserver/components/mdx/SideNote.tsx
Akshay Kolli 382edaab75
All checks were successful
Deploy Website / build-and-deploy (push) Successful in 2m15s
updated look
2026-04-11 23:27:29 -04:00

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