2023-11-08 16:41:28 +03:00

6 lines
185 B
TypeScript

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