import React from "react"; export function SectionContainer( p: React.PropsWithChildren ): React.ReactElement { return (
{p.children}
); }