import { ReactNode } from "react"; interface ThinContainerProps { classNames?: string; children?: ReactNode; } export function ThinContainer(props: ThinContainerProps) { return (
{props.children}
); }