- ✅ Ticket 1.1: Estructura Clean Architecture en backend - ✅ Ticket 1.2: Schemas Zod compartidos - ✅ Ticket 1.3: Refactorización drugs.ts (1362 → 8 archivos modulares) - ✅ Ticket 1.4: Refactorización procedures.ts (3583 → 6 archivos modulares) - ✅ Ticket 1.5: Eliminación de duplicidades (~50 líneas) Cambios principales: - Creada estructura Clean Architecture en backend/src/ - Schemas Zod compartidos en backend/src/shared/schemas/ - Refactorización modular de drugs y procedures - Utilidades genéricas en src/utils/ (filter, validation) - Eliminados scripts obsoletos y documentación antigua - Corregidos errores: QueryClient, import test-error-handling - Build verificado y funcionando correctamente
17 lines
813 B
Markdown
17 lines
813 B
Markdown
# React Router
|
|
|
|
The `react-router` package is the heart of [React Router](https://github.com/remix-run/react-router) and provides all
|
|
the core functionality for both
|
|
[`react-router-dom`](https://github.com/remix-run/react-router/tree/main/packages/react-router-dom)
|
|
and
|
|
[`react-router-native`](https://github.com/remix-run/react-router/tree/main/packages/react-router-native).
|
|
|
|
If you're using React Router, you should never `import` anything directly from
|
|
the `react-router` package, but you should have everything you need in either
|
|
`react-router-dom` or `react-router-native`. Both of those packages re-export
|
|
everything from `react-router`.
|
|
|
|
If you'd like to extend React Router and you know what you're doing, you should
|
|
add `react-router` **as a peer dependency, not a regular dependency** in your
|
|
package.
|