- Introduced a new admin section with user management capabilities, including a dedicated AdminUsersPage. - Updated localization files to support new admin titles in English and Chinese. - Added routing for the admin users page and integrated it into the sidebar configuration. - Created necessary layout and loading components for the admin section. - Implemented a data structure for user management, enhancing the overall admin functionality.
6 lines
155 B
TypeScript
6 lines
155 B
TypeScript
import { Loader2Icon } from 'lucide-react';
|
|
|
|
export default function Loading() {
|
|
return <Loader2Icon className="my-32 mx-auto size-6 animate-spin" />;
|
|
}
|