import { Markdown, MaybeLoading } from "~/components" import { useFetchText } from "~/hooks" import { objStore } from "~/store" import { ext } from "~/utils" const MdPreview = () => { const [content] = useFetchText() return ( ) } export default MdPreview