mirror of
https://github.com/027xiguapi/code-box.git
synced 2026-05-24 11:09:02 +00:00
20 lines
653 B
TypeScript
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>
|
|
)
|
|
}
|