project-nomad/admin/inertia/components/markdoc/ListItem.tsx
2025-12-23 16:00:33 -08:00

4 lines
126 B
TypeScript

export function ListItem({ children }: { children: React.ReactNode }) {
return <li className="ml-0 !pl-4">{children}</li>
}