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 ( <>

๐Ÿค ๅ…ณไบŽ Memos

ๆŠŠ็Žฉ flomo ๅŽๆœ‰ๆ„Ÿ่€Œไฝœ็š„ๅผ€ๆบ้กน็›ฎ

็‰น็‚น๏ผš็ฒพ็พŽไธ”็ป†่Š‚็š„่ง†่ง‰ๆ ทๅผใ€ไฝ“้ชŒไผ˜่‰ฏ็š„ไบคไบ’้€ป่พ‘


๐Ÿ— 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 ); }