reduxjs / redux

A JS library for predictable global state management
https://redux.js.org
MIT License
60.88k stars 15.27k forks source link

createStore is not available through cdnjs? #1580

Closed reggi closed 8 years ago

reggi commented 8 years ago

I'm including the script via cdn in a jsbin and it's not working, says createStore is undefined.

gaearon commented 8 years ago

You are probably looking for Redux.createStore. When you see examples using createStore directly note that they always import or restructure it beforehand.

reggi commented 8 years ago

Bingo! Thanks!

let {createStore} = Redux
let {connect, Provider} = ReactRedux