14 行
253 B
TypeScript
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
|