mirror of
https://github.com/logto-io/logto.git
synced 2025-03-24 22:41:28 -05:00
15 lines
357 B
TypeScript
15 lines
357 B
TypeScript
import React from 'react';
|
|
import { Route, Switch } from 'react-router-dom';
|
|
import AppContent from './components/AppContent';
|
|
import Home from './pages/Home';
|
|
import './scss/normalized.scss';
|
|
|
|
const App = () => (
|
|
<AppContent theme="dark">
|
|
<Switch>
|
|
<Route exact path="/" component={Home} />
|
|
</Switch>
|
|
</AppContent>
|
|
);
|
|
|
|
export default App;
|