Files
btrc-hub/frontend/src/components/common/SectionTitle.tsx
T
2025-06-28 02:32:40 +09:00

10 lines
176 B
TypeScript

import React from 'react'
type Props = { children: React.ReactNode }
export default ({ children }: Props) => (
<h2 className="text-xl my-4">
{children}
</h2>)