All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
9 lines
175 B
TypeScript
9 lines
175 B
TypeScript
import { FC, ReactNode } from "react"
|
|
|
|
interface BodyProps {
|
|
children?: ReactNode
|
|
}
|
|
const Body: FC<BodyProps> = ({ children }) => <div>{children}</div>
|
|
|
|
export default Body
|