2023-11-09 22:49:29 +03:00

6 lines
192 B
TypeScript

import type { PropsWithChildren } from 'react';
export function Content({ children }: PropsWithChildren) {
return <div className="flex w-full justify-center gap-2 py-5">{children}</div>;
}