- Implemented auto-update logic in `ScribeTopBar` with update notification and user interaction. - Integrated `@tauri-apps/plugin-updater` and `@tauri-apps/plugin-process` for updater functionality. - Added automatic migration feature with `autoMigrateElectron` support and UI feedback. - Refactored app architecture with new routing, components, and layout for better modularity. - Enhanced JSON response handling in API client for robust data parsing. - Updated locales to include new translations for update and migration-related UI.
6 lines
115 B
TypeScript
6 lines
115 B
TypeScript
import BookList from '@/components/book/BookList';
|
|
|
|
export default function HomePage() {
|
|
return <BookList/>;
|
|
}
|