10 lines
168 B
TypeScript
10 lines
168 B
TypeScript
import React from 'react'
|
|
|
|
type Props = { children: React.ReactNode }
|
|
|
|
|
|
export default ({ children }: Props) => (
|
|
<h3 className="my-2">
|
|
{children}
|
|
</h3>)
|