37310-vm/frontend/src/components/SectionMain.tsx
Flatlogic Bot 95aef58de7 v1
2026-01-06 15:05:00 +00:00

11 lines
259 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-8 ${containerMaxW}`}>{children}</section>
}