37483-vm/frontend/src/components/SectionMain.tsx
Flatlogic Bot 2a3b0632a4 v3
2026-01-16 09:01:55 +00:00

11 lines
260 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>
}