2025-02-11 17:51:08 +03:00

6 lines
181 B
TypeScript

import { type PropsWithChildren } from 'react';
export function Container({ children }: Readonly<PropsWithChildren>) {
return <div className="space-y-4 px-4">{children}</div>;
}