mirror of
https://github.com/movie-web/movie-web.git
synced 2025-01-13 13:19:08 +01:00
8 lines
186 B
TypeScript
8 lines
186 B
TypeScript
export interface TitleProps {
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
export function Title(props: TitleProps) {
|
|
return <h1 className="text-4xl font-bold text-white">{props.children}</h1>;
|
|
}
|