about summary refs log tree commit diff
path: root/src/view/com/util/layouts/Breakpoints.tsx
diff options
context:
space:
mode:
authorSamuel Newman <mozzius@protonmail.com>2025-02-03 14:18:13 -0800
committerGitHub <noreply@github.com>2025-02-03 22:18:13 +0000
commitfa8607b861e0719d76778aa14af0745313640e33 (patch)
tree7496a49cba6627809be0a4067dde5cca0d8fece0 /src/view/com/util/layouts/Breakpoints.tsx
parent23e62b18de9537b50c8b1df2b4744adc030501d0 (diff)
downloadvoidsky-fa8607b861e0719d76778aa14af0745313640e33.tar.zst
Spring cleaning (#7640)
* delete breakpoint layouts

* delete empty file

* delete legacy radio buttons

* delete selectable button

* rm radio buttons from debug

* delete storage.ts

* delete type-assertions.ts
Diffstat (limited to 'src/view/com/util/layouts/Breakpoints.tsx')
-rw-r--r--src/view/com/util/layouts/Breakpoints.tsx11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/view/com/util/layouts/Breakpoints.tsx b/src/view/com/util/layouts/Breakpoints.tsx
deleted file mode 100644
index 45dc23615..000000000
--- a/src/view/com/util/layouts/Breakpoints.tsx
+++ /dev/null
@@ -1,11 +0,0 @@
-import React from 'react'
-
-export const Desktop = ({}: React.PropsWithChildren<{}>) => null
-export const TabletOrDesktop = ({}: React.PropsWithChildren<{}>) => null
-export const Tablet = ({}: React.PropsWithChildren<{}>) => null
-export const TabletOrMobile = ({children}: React.PropsWithChildren<{}>) => (
-  <>{children}</>
-)
-export const Mobile = ({children}: React.PropsWithChildren<{}>) => (
-  <>{children}</>
-)