Initial commit
This commit is contained in:
14
discord-bot/client/src/App.tsx
Normal file
14
discord-bot/client/src/App.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { CurrentSong } from "./components/CurrentSong";
|
||||
import { PlaybackInfo } from "./components/PlaybackInfo";
|
||||
import { SongQueue } from "./components/SongQueue";
|
||||
|
||||
export const App = () => {
|
||||
return (
|
||||
<div className="container mt-5">
|
||||
<h1 className="text-center">Discord Music</h1>
|
||||
<CurrentSong />
|
||||
<SongQueue />
|
||||
<PlaybackInfo />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user