6 lines
181 B
TypeScript
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>;
|
|
}
|