import React from "react"; import "./forkme.scss"; import { t } from "../../locales/"; export const ForkMe = ({ repo = "" }) => { return (
); }; export const PoweredByFilestash = () => { if(!window.CONFIG["fork_button"]) return null; return (
{ t("Powered by") } Filestash
); };