mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-12 18:29:57 -05:00
19 lines
440 B
TypeScript
19 lines
440 B
TypeScript
|
import { OverlappingPanels } from "react-overlapping-panels";
|
||
|
import { Switch, Route } from "react-router-dom";
|
||
|
|
||
|
import Home from './home/Home';
|
||
|
|
||
|
export default function App() {
|
||
|
return (
|
||
|
<OverlappingPanels
|
||
|
width="100vw"
|
||
|
height="100%">
|
||
|
<Switch>
|
||
|
<Route path="/">
|
||
|
<Home />
|
||
|
</Route>
|
||
|
</Switch>
|
||
|
</OverlappingPanels>
|
||
|
);
|
||
|
};
|