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

🤠关于 Memos

一个碎片化知识记录工具。


为何做这个?
有何特点呢?
🤔 问题反馈

Enjoy it and have fun~


Last updated on 2021/11/26 16:17:44 🎉

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