movie-web/src3/components/layout/ThinContainer.tsx
2022-03-13 19:08:28 +01:00

17 lines
324 B
TypeScript

import { ReactNode } from "react";
interface ThinContainerProps {
classNames?: string;
children?: ReactNode;
}
export function ThinContainer(props: ThinContainerProps) {
return (
<div
className={`max-w-[600px] mx-auto px-2 sm:px-0 ${props.classNames || ""}`}
>
{props.children}
</div>
);
}