import React from "react"; import { getTranslation } from "../core/i18n/I18NHandler"; import { Button } from "@geist-ui/core"; const redirectToPage = (redirectLoc) => { window.location.href = "./" + redirectLoc; }; function InfoPageComponent({ children, redirectLoc }) { return (
{children}
); } export default InfoPageComponent;