summaryrefslogtreecommitdiff
path: root/src/desktop/apps/edit.tsx
diff options
context:
space:
mode:
authordarkuss <darkussdelta@gmail.com>2026-08-22 01:58:37 +0200
committerdarkuss <darkussdelta@gmail.com>2026-08-22 01:58:37 +0200
commit8f32fd58cafe677c07d9ed9fff84f6e255156d37 (patch)
treea5de06ffb2c0a8b878c8a563ec8cee692efc98ac /src/desktop/apps/edit.tsx
parent5ac62cc1a4d9a5f50ea26d5bc1afb0fbf95da23c (diff)
holy shit i'm finally done
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
- }
-}