1
0
mirror of synced 2025-12-22 11:26:57 -05:00
Files
docs/components/article/ArticleTitle.tsx
2023-04-13 16:35:30 +00:00

13 lines
282 B
TypeScript

type Props = {
children: React.ReactNode
}
export const ArticleTitle = ({ children }: Props) => {
return (
<div className="d-flex flex-items-baseline flex-justify-between">
<h1 id="title-h1" className="border-bottom-0">
{children}
</h1>
</div>
)
}