import React from "react"; import "./index.scss"; // What we use on the document pages export function MainContentContainer({ children, className = "", standalone = false, }: { children: React.ReactNode; className?: string; standalone?: boolean; }) { return (
{children}
); }