import React from "react"; import { Link } from "../../containers/link"; import "./styles.pcss"; import { GlobalContext } from "../../containers/app"; export const Base = function (props: { children; ctx: GlobalContext }) { return (
{props.children}
); };