revert: uncomment other components

This commit is contained in:
Triston Armstrong 2024-04-24 18:27:05 -04:00
parent 609dd9ad9c
commit 8c7a270f30
No known key found for this signature in database
GPG Key ID: FADE6AC6F956FC52

View File

@ -1,7 +1,7 @@
import { useEffect } from "kaioken"
import { useStorage } from "./hooks/storageStores"
import { useStationsStore } from "./hooks/stationStores"
import { Popular, Navigation } from "./components"
import { Popular, Navigation, LocalRadio, RecommendedRadio, MusicPlayer } from "./components"
export function App() {
const { getStationsFile } = useStorage()
@ -34,13 +34,13 @@ export function App() {
{/* Right Section __________*/}
<div className="flex-1 min-h-[98vh] max-h-[98vh] flex h-0 p-2 min-w-0">
<div className="bg-gray-200 w-full border rounded-xl p-4 flex-col flex gap-4">
{/*<MusicPlayer />*/}
<MusicPlayer />
<Popular />
{/* Bottom Section __________*/}
<div id="bottom" className="flex-1 rounded-xl flex flex-row gap-4 bg-white">
{/*<LocalRadio />*/}
{/*<RecommendedRadio />*/}
<div id="bottom" className="flex-1 rounded-xl flex flex-row gap-4 ">
<LocalRadio />
<RecommendedRadio />
</div>
</div>
</div>