UNPKG

rasa-nlu-trainer

Version:

This is a tool to edit your training examples for [rasa NLU](https://github.com/golastmile/rasa_nlu)

12 lines (9 loc) 215 B
// @flow import { createStore, applyMiddleware } from 'redux' import reducer from './reducer' import thunk from 'redux-thunk' const store = createStore( reducer, applyMiddleware(thunk), ) export default store