Creates a new Store.
Any
The initial state of your app.
Object
A new Store instance.
import { createStore } from 'dop' const store = createStore({ books: 0 }) store.state // { books: 0 }