UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

16 lines (13 loc) 271 B
// eslint-disable-next-line @typescript-eslint/ban-ts-comment // @ts-nocheck export default class MutableValue { constructor(value) { this._value = value; } get value() { return this._value; } set value(nextValue) { this._value = nextValue; } }