eexiv/src/app/container/Container.tsx
2024-02-11 16:52:59 -08:00

16 lines
510 B
TypeScript

import styles from './container.module.css'
/**
* Renders a container component with the specified width, containing the provided children.
*
* @param children - The children to be rendered within the container.
* @return The container component with the specified width and children.
*/
export default function Container({
children,
}: Readonly<{ children: React.ReactNode }>) {
return (
<div className={`${styles.container} pb-10 px-5 max-w-[1200px] mx-auto`}>
{children}
</div>
)
}