/** * Routes for the React app. */ import React from "react"; import { IndexRoute, Route } from "react-router"; import RequireAuthentication from "./containers/RequireAuthentication"; import App from "./containers/App"; import SimpleLayout from "./components/layouts/Simple"; import SidebarLayout from "./components/layouts/Sidebar"; import ArtistPage from "./views/ArtistPage"; import ArtistsPage from "./views/ArtistsPage"; import AlbumsPage from "./views/AlbumsPage"; import BrowsePage from "./views/BrowsePage"; import DiscoverPage from "./views/DiscoverPage"; import HomePage from "./views/HomePage"; import LoginPage from "./views/LoginPage"; import LogoutPage from "./views/LogoutPage"; import PlaylistPage from "./views/PlaylistPage"; import SongsPage from "./views/SongsPage"; import SettingsPage from "./views/SettingsPage"; export default ( // Main container is App // Login is a SimpleLayout // All the rest is a SidebarLayout // And some pages require authentication );