File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed
Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change 1+ Remove duplicate logo from Discovery (on mobile)
Original file line number Diff line number Diff line change 11import { FC } from 'react'
2- import { useMediaQuery } from 'react-responsive'
32import { Layout , Card } from '@oasisprotocol/rose-app-ui/discover'
43import { CARDS_CONFIG } from './constants/config'
5-
64import classes from './App.module.css'
7- import { Logo , Header } from '@oasisprotocol/rose-app-ui/core'
85
96const { featured, dApps, tooling } = CARDS_CONFIG
107
118export const App : FC = ( ) => {
12- const isMobileScreen = useMediaQuery ( { query : '(max-width: 1023px)' } )
13-
149 return (
1510 < Layout >
16- < Header logo = { isMobileScreen && < Logo /> } />
1711 < div className = { classes . app } >
1812 < h1 className = { classes . discoverTitle } > Discover</ h1 >
1913 < div className = { classes . featured } >
You can’t perform that action at this time.
0 commit comments