aboutsummaryrefslogtreecommitdiffstats
path: root/src/observables/clicker.js
blob: ae3d3b1d0623569c5260126c60fca447d445f8bf (plain)
1
2
3
4
5
6
7
8
9
import riot from 'riot';

function Clicker() {
  riot.observable(this);
}

const clicker = new Clicker();

export default clicker;