Initial commit
Initial commit based on what I learned from atama and React Hooks:
// Initial API:
import Store, { useStore, State } from 'statux';
const { user, setUser, books, setBooks, ... } = useStore();
<State>
{({ user, setUser, books, setBooks, ... }) => (
<div>{user.name}</div>
)}
</State>