- Improved import organization and formatting in PlaylistsPage, RegisterPage, SoundsPage, SettingsPage, and UsersPage for better readability. - Added error handling and user feedback with toast notifications in SoundsPage and SettingsPage. - Enhanced user experience by implementing debounced search functionality in PlaylistsPage and SoundsPage. - Updated the layout and structure of forms in SettingsPage and UsersPage for better usability. - Improved accessibility and semantics by ensuring proper labeling and descriptions in forms. - Fixed minor bugs related to state management and API calls in various components.
6 lines
173 B
TypeScript
6 lines
173 B
TypeScript
// Main API exports - using the new modular API structure
|
|
export * from './api/index'
|
|
|
|
// Export the main API object as default
|
|
export { default as api } from './api/index'
|