summaryrefslogtreecommitdiff
path: root/src/desktop/apps/edit.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/desktop/apps/edit.tsx')
-rw-r--r--src/desktop/apps/edit.tsx13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/desktop/apps/edit.tsx b/src/desktop/apps/edit.tsx
deleted file mode 100644
index 00aba45..0000000
--- a/src/desktop/apps/edit.tsx
+++ /dev/null
@@ -1,13 +0,0 @@
-import { ComponentChildren } from "preact"
-
-export function Edit(props: Edit.Props) {
- return <textarea autocomplete="off" spellcheck={false}>
- {props.children}
- </textarea>
-}
-
-namespace Edit {
- export type Props = {
- children?: ComponentChildren
- }
-}