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

14 行
246 B
TypeScript

import React from 'react'
import type { FC } from 'react'
type Props = { children: React.ReactNode }
const SubsectionTitle: FC<Props> = ({ children }) => (
<h3 className="my-2">
{children}
</h3>)
export default SubsectionTitle