2023-11-23 17:06:58 +03:00

10 lines
264 B
TypeScript

import type { PropsWithChildren } from 'react';
export function Content({ children }: PropsWithChildren) {
return (
<div className="grid w-full place-items-center">
<div className="xl:w-standard grid w-screen gap-5">{children}</div>
</div>
);
}