2023-07-22 00:11:30 +02:00

15 lines
250 B
TypeScript

import * as React from 'react'
type ContentProps = {
children?: React.ReactNode;
}
export function Content({children} : ContentProps) {
return (
<div className='tw-flex tw-flex-col tw-w-full tw-relative'>
{children}
</div>
)
}