import { showDialog } from "./Dialog"; import showStarHistoryDialog from "./StarHistoryDialog"; import "../less/about-site-dialog.less"; interface Props extends DialogProps {} const AboutSiteDialog: React.FC = ({ destroy }: Props) => { const handleCloseBtnClick = () => { destroy(); }; return ( <>

🤠About Memos

Memos is an open source, self-hosted alternative to flomo.

Built with `Golang` and `React`.


🏗 This project is working in progress,
and very pleasure to welcome your{" "} issues and PR.


Star History

Last updated on 2021/12/12 14:38:15 🎉

); }; export default function showAboutSiteDialog(): void { showDialog( { className: "about-site-dialog", }, AboutSiteDialog ); }