personal-website/components/server/List.tsx
Filipe Medeiros 5ff4edc634
feat: lots of stuff sorry
Signed-off-by: Filipe Medeiros <hello@filipesm.eu>
2023-12-03 12:25:54 +01:00

10 lines
202 B
TypeScript

import { PropsWithChildren } from 'react'
export interface Props {
as: 'ol' | 'ul'
}
export default function List({ as: Tag, children }: PropsWithChildren<Props>) {
return <Tag>{children}</Tag>
}