12 lines
274 B
TypeScript
12 lines
274 B
TypeScript
import { withI18n } from '~/lib/i18n/with-i18n';
|
|
|
|
function SiteLayout(props: React.PropsWithChildren) {
|
|
return (
|
|
<div className={'flex min-h-[100vh] flex-col justify-center items-center'}>
|
|
{props.children}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default withI18n(SiteLayout);
|