ファイル
btrc-hub/frontend/src/components/common/PageTitle.tsx
T
2026-05-11 03:32:47 +09:00

14 行
253 B
TypeScript

import React from 'react'
import type { FC } from 'react'
type Props = { children: React.ReactNode }
const PageTitle: FC<Props> = ({ children }) => (
<h1 className="text-2xl font-bold mb-2">
{children}
</h1>)
export default PageTitle