You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 25, 2020. It is now read-only.
constApp=()=>(<AppLayout><Routepath="/invoices"component={Invoices}/></AppLayout>)constInvoices=()=>(<Layout>{/* always show the nav */}<InvoicesNav/><Mediaquery={PRETTY_SMALL}>{screenIsSmall=>screenIsSmall// small screen has no redirect
? <Switch><Routeexactpath="/invoices/dashboard"component={Dashboard}/><Routepath="/invoices/:id"component={Invoice}/></Switch>// large screen does!
: <Switch><Routeexactpath="/invoices/dashboard"component={Dashboard}/><Routepath="/invoices/:id"component={Invoice}/><Redirectfrom="/invoices"to="/invoices/dashboard"/></Switch>}</Media></Layout>)
The text was updated successfully, but these errors were encountered:
See: https://reacttraining.com/react-router/core/guides/philosophy/responsive-routes
The text was updated successfully, but these errors were encountered: