commit on 'main'

This commit is contained in:
Nitin Kanchinadam 2021-07-01 14:10:49 -04:00
parent 12c0f9d32f
commit fcaac3d419

View File

@ -6,15 +6,18 @@ const Group = lazy(() => import('./Group'));
export default function App() {
return (
<div style={{ padding: '1rem' }}>
<BrowserRouter>
<Switch>
<Route path="/" exact component={WheelShare} />
<Suspense fallback={null}>
<Route path="/groups/:id" component={Group} />
</Suspense>
</Switch>
</BrowserRouter>
</div>
<>
<a href="https://ion.tjhsst.edu/oauth/authorize?response_type=code&client_id=ojfWWAyRyfTpNB4tNUKjcYTVytpi7moNt21M857O">Login Link for Testing Oauth</a>
<div style={{ padding: '1rem' }}>
<BrowserRouter>
<Switch>
<Route path="/" exact component={WheelShare} />
<Suspense fallback={null}>
<Route path="/groups/:id" component={Group} />
</Suspense>
</Switch>
</BrowserRouter>
</div>
</>
);
}