import { memo, useRef, useState } from "react" import styles from "./document.module.css" import Download from "@geist-ui/icons/download" import ExternalLink from "@geist-ui/icons/externalLink" import Skeleton from "react-loading-skeleton" import { Button, Text, ButtonGroup, Spacer, Tabs, Textarea, Tooltip, Link, Tag } from "@geist-ui/core" import HtmlPreview from "@components/preview" import FadeIn from "@components/fade-in" // import Link from "next/link" type Props = { title: string initialTab?: "edit" | "preview" skeleton?: boolean id: string content: string } const DownloadButton = ({ rawLink }: { rawLink?: string }) => { return (
) } const Document = ({ content, title, initialTab = "edit", skeleton, id }: Props) => { const codeEditorRef = useRef