import React from 'react';
import UserList from './features/users/components/UserList';
function App() {
return (
<div>
<h1>User Management</h1>
<UserList />
</div>
);
}
export default App;
Dynamic reducer loading is an advanced pattern used in large-scale applications. It allows you to add reducers on the fly, optimizing the app's performance and avoiding loading unnecessary reducers upfront.