mirror of
https://github.com/Radiquum/radiquum.github.io.git
synced 2025-09-05 22:15:37 +05:00
9 lines
205 B
TypeScript
9 lines
205 B
TypeScript
export const Section = ({
|
|
children,
|
|
}: Readonly<{ children: React.ReactNode }>) => {
|
|
return (
|
|
<div className="max-w-[400px] w-full mx-auto flex flex-col gap-2">
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|