File size: 201 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
type ContainerProps = {
children: React.ReactNode;
};
export default function Container({ children }: ContainerProps) {
return <div className="container max-w-2xl m-auto px-4">{children}</div>;
}
|