- Add text truncation for title on mobile screens - Hide user info section on mobile, show simplified icons only - Update seed.ts to create admin and demo users with proper password hashing - Add bcryptjs for password hashing in seed script - Update QWEN.md documentation with seed command and default users Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
10 lines
206 B
TypeScript
10 lines
206 B
TypeScript
import { createFileRoute, Outlet } from "@tanstack/react-router";
|
|
|
|
export const Route = createFileRoute("/dashboard/pengaturan")({
|
|
component: () => (
|
|
<div className="p-2">
|
|
<Outlet />
|
|
</div>
|
|
),
|
|
});
|