diff --git a/src/components/Editor.tsx b/src/components/Editor.tsx deleted file mode 100644 index adda42323..000000000 --- a/src/components/Editor.tsx +++ /dev/null @@ -1,37 +0,0 @@ -import { useCopyText } from '../hooks/use-copy-text'; -import CopyIcon from '../icons/copy.svg'; - -type EditorProps = { - title: string; - text: string; -}; - -export function Editor(props: EditorProps) { - const { text, title } = props; - const { isCopied, copyText } = useCopyText(); - - return ( -