Files
code-box/component/options/segmentfault.tsx
2024-10-18 16:50:57 +08:00

20 lines
653 B
TypeScript

import { DownloadOutlined, StarTwoTone } from "@ant-design/icons"
import { sendToContentScript } from "@plasmohq/messaging"
import DownloadHtml from "~component/items/downloadHtml"
import DownloadMarkdown from "~component/items/downloadMarkdown"
import EditMarkdown from "~component/items/editMarkdown"
import { i18n } from "~tools"
export default function Segmentfault() {
return (
<fieldset>
<legend>{i18n("segmentfaultConfig")}</legend>
<EditMarkdown name="segmentfault"></EditMarkdown>
<DownloadMarkdown name="segmentfault"></DownloadMarkdown>
<DownloadHtml name="segmentfault"></DownloadHtml>
</fieldset>
)
}