/* eslint-disable sort-keys-fix/sort-keys-fix */ import { Routes, Route } from 'react-router-dom'; import { LoginRoute } from 'renderer/features/auth'; import { DashboardRoute } from 'renderer/features/dashboard'; import { LibraryAlbumsRoute } from 'renderer/features/library/routes/LibraryAlbumsRoute'; import { LibraryArtistsRoute } from 'renderer/features/library/routes/LibraryArtistsRoute'; import { LibraryRoute } from 'renderer/features/library/routes/LibraryRoute'; import { ServersRoute } from 'renderer/features/servers'; import { AuthLayout, DefaultLayout } from '../layouts'; import { AuthOutlet } from './outlets/AuthOutlet'; import { PrivateOutlet } from './outlets/PrivateOutlet'; import { AppRoute } from './utils/routes'; export const AppRouter = () => { return ( }> }> } path={AppRoute.LOGIN} /> } path={AppRoute.HOME} > }> } path={AppRoute.HOME} /> } path={AppRoute.SERVERS} /> } path={AppRoute.SEARCH} /> } path={AppRoute.LIBRARY} /> } path={AppRoute.LIBRARY_ALBUMARTISTS} /> } path={AppRoute.LIBRARY_ALBUMS} /> } path={AppRoute.LIBRARY_ALBUMS} /> } path={AppRoute.LIBRARY_ARTISTS} /> } path={AppRoute.LIBRARY_ARTISTS} /> } path={AppRoute.PLAYING} /> ); };