Phase 2 UI Adjustments/Edits by bonamin
This commit is contained in:
@@ -5,6 +5,7 @@ import MainLayout from "./layout/MainLayout";
|
||||
import MelodyList from "./melodies/MelodyList";
|
||||
import MelodyDetail from "./melodies/MelodyDetail";
|
||||
import MelodyForm from "./melodies/MelodyForm";
|
||||
import MelodySettings from "./melodies/MelodySettings";
|
||||
|
||||
function ProtectedRoute({ children }) {
|
||||
const { user, loading } = useAuth();
|
||||
@@ -50,6 +51,7 @@ export default function App() {
|
||||
>
|
||||
<Route index element={<DashboardPage />} />
|
||||
<Route path="melodies" element={<MelodyList />} />
|
||||
<Route path="melodies/settings" element={<MelodySettings />} />
|
||||
<Route path="melodies/new" element={<MelodyForm />} />
|
||||
<Route path="melodies/:id" element={<MelodyDetail />} />
|
||||
<Route path="melodies/:id/edit" element={<MelodyForm />} />
|
||||
|
||||
Reference in New Issue
Block a user