10 lines
187 B
TypeScript
10 lines
187 B
TypeScript
import React from 'react'
|
|
|
|
type Props = { children: React.ReactNode }
|
|
|
|
|
|
export default ({ children }: Props) => (
|
|
<h1 className="text-2xl font-bold mb-2">
|
|
{children}
|
|
</h1>)
|