add memes

This commit is contained in:
2025-07-24 10:06:36 -04:00
parent 0ee80f4b49
commit 8faf5de77f
6 changed files with 180 additions and 1 deletions

View File

@@ -2,6 +2,7 @@
import { toast } from 'react-toastify';
import { API_URL } from '../config';
import { Player } from './AudioPlayer.jsx';
import Memes from './Memes.jsx';
import { JoyUIRootIsland } from './Components.jsx';
import { PrimeReactProvider } from "primereact/api";
import CustomToastContainer from '../components/ToastProvider.jsx';
@@ -29,7 +30,8 @@ export default function Root({child}) {
Work in progress... bugs are to be expected.
</Alert> */}
{child == "LyricSearch" && (<LyricSearch client:only="react" />)}
{child == "Player" && (<Player client:only="react"></Player>)}
{child == "Player" && (<Player client:only="react" />)}
{child == "Memes" && <Memes client:only="react" />}
</JoyUIRootIsland>
</PrimeReactProvider>
);