mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
7 lines
144 B
TypeScript
7 lines
144 B
TypeScript
import { reducer } from './reducers';
|
|
import { createStore } from 'redux';
|
|
|
|
const store = createStore(reducer);
|
|
|
|
console.log(store.getState());
|