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()} ); }