// the find
zuiidea/antd-admin
AI-friendly enterprise front-end best practices
A monorepo scaffolding kit for Ant Design-based admin dashboards. Gives you a working React 19 + TanStack Router/Query + Zustand + Zod app out of a single CLI command, with JWT auth, RBAC, and MSW mocks baked in. Aimed at teams starting internal tools who don't want to wire all that together from scratch.
URL-synced table state via useUrlSearchState is the kind of thing most teams forget until it's painful to add later. MSW mock-first setup is genuinely useful — you can build the entire frontend without a backend. The stack choices are current: TanStack Router v1 with file-based routing and Zod schema validation on API boundaries are the right picks for 2026. Playwright E2E coverage for auth flows, RBAC, and URL state is more than most admin templates ship.
The 'enterprise' framing oversells it — there's no audit logging, no session management beyond JWT refresh, and no real multi-tenant support. You get one users CRUD page and a dashboard stub; real admin apps have 20+ resource types and the template doesn't show you how that scales. The Lingui i18n template is a separate app entirely, so keeping both templates in sync as the project evolves is going to drift. No server-side rendering path — if your admin app needs it, you're on your own.