Simplify the RecommendedFeeds with breakpoint components

This commit is contained in:
Paul Frazee 2023-08-30 16:13:09 -07:00
parent 3fa9b6daba
commit 8bc8dcc094
6 changed files with 203 additions and 259 deletions

View file

@ -0,0 +1,8 @@
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