10 lines
176 B
TypeScript
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>)
|