mirror of
https://github.com/tjsga/tj-sga-website-react.git
synced 2025-04-21 20:09:51 -04:00
8 lines
139 B
TypeScript
8 lines
139 B
TypeScript
export default function RowItemHeader({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return <h3 className='header'>{children}</h3>;
|
|
}
|