mirror of
https://github.com/tale/headplane.git
synced 2026-08-10 05:56:52 +00:00
14 lines
228 B
TypeScript
14 lines
228 B
TypeScript
import React from 'react';
|
|
|
|
export interface TitleProps {
|
|
children: React.ReactNode;
|
|
}
|
|
|
|
export default function Title({ children }: TitleProps) {
|
|
return (
|
|
<h3 className="text-2xl font-bold mb-6">
|
|
{children}
|
|
</h3>
|
|
);
|
|
}
|