mirror of
https://github.com/a2nt/webpack-bootstrap-ui-kit.git
synced 2024-10-22 11:05:45 +02:00
20 lines
376 B
JavaScript
20 lines
376 B
JavaScript
import configure from "./configure";
|
|
const store = configure();
|
|
|
|
/*import {
|
|
PageControls
|
|
} from './components'*/
|
|
|
|
//const pageControls = new PageControls(store)
|
|
|
|
store.subscribe(() => console.log(store.getState()));
|
|
store.dispatch({
|
|
type: "counter/incremented",
|
|
});
|
|
store.dispatch({
|
|
type: "counter/incremented",
|
|
});
|
|
store.dispatch({
|
|
type: "counter/decremented",
|
|
});
|