suno / src /app /components /Section.tsx
rippanteq7's picture
Upload folder using huggingface_hub
dfe72e0 verified
raw
history blame
405 Bytes
'use client';
/**
*
* @param param0
* @returns
*/
export default function Section({
children,
className
}: {
children?: React.ReactNode | string,
className?: string
}) {
return (
<section className={`mx-auto w-full px-4 lg:px-0 ${className}`} >
<div className=" max-w-3xl mx-auto">
{children}
</div>
</section>
);
};