- Deleted redundant components (`AddActionButton`, `AlertBox`, `AlertStack`, `BackButton`, `CancelButton`, and `CollapsableArea`) and related files. - Removed unused models (`Book`, `BookSerie`, `BookTables`, `Character`, and `Chapter`) to reduce codebase clutter. - Updated project structure and references to reflect these removals.
7 lines
135 B
TypeScript
7 lines
135 B
TypeScript
'use client';
|
|
import BookList from '@/components/book/BookList';
|
|
|
|
export default function HomePage() {
|
|
return <BookList/>;
|
|
}
|