import './section.css';
interface ISectionsProps {
children: React.ReactNode
modifier?: string
}
export function Sections({
children,
modifier
}: ISectionsProps) {
return (
{children}
);
}
interface ISectionProps {
children: React.ReactNode
modifier?: string
}
export function Section({
children,
modifier
}: ISectionProps) {
return (
{children}
);
}