import classNames from "classnames"; import React from "react"; type Props = { /** * Content of component */ children: React.ReactNode; /** * Component styling */ className?: string; } & Omit, ""> /** * Main container to handle page content max-width on * different screen sizes */ export default function Container({children, className}: Props) { return (
{children}
) }