A
{
type: PrivateRoute,
component: ProtectedRoute(CreateCustomer, managerRoles),
exact: true,
path: ["/customers/createCustomer"],
},
{
type: PrivateRoute,
component: ProtectedRoute(Customer_MAIN, managerRoles),
exact: true,
path: ["/customers/:customerId"],
},, Когда ренедрится компонент по первому Роуту, ниже отображается компонент второго Роута. Exact обозначил ведь. чзх? не подскажете)

