2023-11-08 12:02:00 +03:00

6 lines
180 B
TypeScript

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