import { HashRouter, Route, Switch } from 'react-router-dom'; import React from 'react'; import { contexts } from '@oyster/common'; import { MarketProvider, MetaProvider, } from './contexts'; import { AppLayout } from './components/Layout'; import { ArtCreateView, ArtistsView, ArtistView, ArtView, AuctionCreateView, AuctionView, HomeView, UserView } from './views'; import { UseWalletProvider } from 'use-wallet'; const { WalletProvider } = contexts.Wallet; const { ConnectionProvider } = contexts.Connection; const { AccountsProvider } = contexts.Accounts; export function Routes() { return ( <> } /> } /> } /> } /> } /> } /> } /> } /> ); }