-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
24 lines (21 loc) · 830 Bytes
/
App.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import './App.css';
import { ReactElement } from 'react';
import ApplicationSelection from './components/app-selection/ApplicationSelection';
import GithubButton from './components/GithubButton';
import SpotifyFrame from './components/spotify/SpotifyFrame';
import { useContextMenuDisabled } from './hooks';
function App(): ReactElement {
useContextMenuDisabled();
return (
<div className="text-center h-screen max-h-screen overflow-y-hidden select-none">
<ApplicationSelection />
<div className="fixed bottom-5 right-5 z-50 grayscale hover:grayscale-0 duration-500 translate-x-0 hover:translate-x-0 translate-y-52 hover:translate-y-0">
<SpotifyFrame />
</div>
<div className="fixed bottom-2 left-2 h-12 w-12">
<GithubButton />
</div>
</div>
);
}
export default App;