29972/frontend/src/components/SectionMain.tsx
2025-03-17 15:50:22 +00:00

11 lines
264 B
TypeScript

import React, { ReactNode } from 'react';
import { containerMaxW } from '../config';
type Props = {
children: ReactNode;
};
export default function SectionMain({ children }: Props) {
return <section className={`p-6 ${containerMaxW}`}>{children}</section>;
}