aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/state.js
blob: 195fd2493969a1fc41a4eae4535446c4d728df38 (plain)
1
2
3
4
5
export const useState = (value = undefined) => {
  return [() => value, (x) => {
    value = x;
  }];
};