// Root.jsx import { toast } from 'react-toastify'; import { API_URL } from '../config'; import { Player } from './AudioPlayer.jsx'; import { JoyUIRootIsland } from './Components.jsx'; import { PrimeReactProvider } from "primereact/api"; import Alert from '@mui/joy/Alert'; import WarningIcon from '@mui/icons-material/Warning'; import CustomToastContainer from '../components/ToastProvider.jsx'; import LyricSearch from './LyricSearch.jsx'; import 'primereact/resources/themes/bootstrap4-light-blue/theme.css'; import 'primereact/resources/primereact.min.css'; export default function Root({child}) { window.toast = toast; window.API_URL = API_URL; const theme = document.documentElement.getAttribute("data-theme") // console.log(opts.children); return ( } variant="soft" color="danger"> Work in progress... bugs are to be expected. {child == "LyricSearch" && ()} {child == "Player" && ()} ); }