Skip to content

Instantly share code, notes, and snippets.

@coffee-cup
Created October 23, 2019 12:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save coffee-cup/559a0fb0d3e6d98d2a300f2448956538 to your computer and use it in GitHub Desktop.
Save coffee-cup/559a0fb0d3e6d98d2a300f2448956538 to your computer and use it in GitHub Desktop.
// src/model.ts
import { createModel } from "@prodo/core";
interface State {
count: number;
}
export const model = createModel<State>();
export const { state, watch, dispatch } = model.ctx;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment