10 lines
264 B
TypeScript
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>
|
|
);
|
|
}
|