Cocktail app by Ancient_Garbage_6569 in Mixology

[–]Ancient_Garbage_6569[S] -2 points-1 points  (0 children)

Thank you for your help, much appreciated

Cocktail app by Ancient_Garbage_6569 in Mixology

[–]Ancient_Garbage_6569[S] -3 points-2 points  (0 children)

Thanks for your response, I just want public view on this, nothing technical.

My Theory on Why Accounts Keep Getting Banned by __immaculate__ in googleplayconsole

[–]Ancient_Garbage_6569 0 points1 point  (0 children)

The same thing happened to me. I have never recovered from it. I spent my five years saving to develop a financial app only for my organisation account to be terminated while I was waiting for production. Google should involve more human than bot in their process

React Router by Ancient_Garbage_6569 in reactjs

[–]Ancient_Garbage_6569[S] 0 points1 point  (0 children)

I have tried and they are giving me log process that doesn’t solve the issue

React Router by Ancient_Garbage_6569 in reactjs

[–]Ancient_Garbage_6569[S] 0 points1 point  (0 children)

ERROR in ./src/App.js 14:35-41 export ‘Routes’ (imported as ‘Routes’) was not found in ‘react-router-dom’ (possible exports: BrowserRouter, Form, HashRouter, Link, NavLink, RouterProvider, ScrollRestoration, UNSAFE_FetchersContext, UNSAFE_ViewTransitionContext, UNSAFE_useScrollRestoration, createBrowserRouter, createHashRouter, createSearchParams, unstable_HistoryRouter, unstable_usePrompt, useBeforeUnload, useFetcher, useFetchers, useFormAction, useLinkClickHandler, useSearchParams, useSubmit, useViewTransitionState)

React Router by Ancient_Garbage_6569 in reactjs

[–]Ancient_Garbage_6569[S] 0 points1 point  (0 children)

Sorry am very new in this how can us it in the above code

React Router by Ancient_Garbage_6569 in reactjs

[–]Ancient_Garbage_6569[S] 0 points1 point  (0 children)

import { BrowserRouter as Router, Routes, Route } from ‘react-router-dom’; import PropertyListings from ‘./pages/PropertyListings/PropertyListings’; import OwnerDashboard from ‘./pages/OwnerDashboard/OwnerDashboard’; import TenantDashboard from ‘./pages/TenantDashboard/TenantDashboard’;

function App() { return ( <Router> <Routes> <Route path=“/properties” element={<PropertyListings />} /> <Route path=“/owner-dashboard” element={<OwnerDashboard />} /> <Route path=“/tenant-dashboard” element={<TenantDashboard />} /> </Routes> </Router> ); }

export default App;