import { globalService } from "../services"; import Icon from "./Icon"; const DemoBanner: React.FC = () => { const { workspaceProfile: { profile: { mode }, }, } = globalService.getState(); const shouldShow = mode === "demo"; if (!shouldShow) return null; return (
✨🔗 Slash - An open source, self-hosted bookmarks and link sharing platform Install
); }; export default DemoBanner;