mirror of
https://github.com/p-stream/p-stream.git
synced 2026-04-19 05:32:13 +00:00
7 lines
186 B
TypeScript
7 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>;
|
|
}
|