Files
headplane/app/components/Title.tsx
T
2025-01-19 15:24:03 +00:00

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>
);
}