summaryrefslogtreecommitdiff
path: root/src/desktop/hr.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/desktop/hr.tsx')
-rw-r--r--src/desktop/hr.tsx5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/desktop/hr.tsx b/src/desktop/hr.tsx
new file mode 100644
index 0000000..7faa590
--- /dev/null
+++ b/src/desktop/hr.tsx
@@ -0,0 +1,5 @@
+import { memo } from "preact/compat";
+
+export const Hr = memo(function Hr() {
+ return <div>------------------</div>
+})