Logger Extension
The Logger Extension enables simple Logging: console.log every action and the updated state.
Register the extension
Configure the store with the LoggerExtension
:
import { LoggerExtension } from 'mini-rx-store';
const store: Store = configureStore({
extensions: [
new LoggerExtension()
]
});