diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-02-03 14:18:13 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-03 22:18:13 +0000 |
commit | fa8607b861e0719d76778aa14af0745313640e33 (patch) | |
tree | 7496a49cba6627809be0a4067dde5cca0d8fece0 /src/view/com/util/layouts/Breakpoints.tsx | |
parent | 23e62b18de9537b50c8b1df2b4744adc030501d0 (diff) | |
download | voidsky-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.tsx | 11 |
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}</> -) |