From 7945c4478210de3ab6c04fb65b123fbfa4fa94d2 Mon Sep 17 00:00:00 2001 From: Phill Pover Date: Thu, 3 Apr 2025 12:55:09 +0100 Subject: [PATCH] Adding create album form --- frontend/src/app/album/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/album/page.tsx b/frontend/src/app/album/page.tsx index 3e8804d..3937824 100644 --- a/frontend/src/app/album/page.tsx +++ b/frontend/src/app/album/page.tsx @@ -3,7 +3,7 @@ import { useState, useEffect } from 'react'; import Link from 'next/link'; import { Album } from '@/entities/album.entity'; -import { CreateAlbumButton } from '@/app/ui/button'; +import { CreateAlbumForm } from '@/app/ui/form'; export default function Page() { const [albums, setAlbums] = useState([]); @@ -32,7 +32,7 @@ export default function Page() { by {album.artist} ({album.genre}) ))} - {CreateAlbumButton()} + {CreateAlbumForm()} ); }