UNPKG

@inkline/paper

Version:

Paper is a unified interface for defining components for Vue and React using a single code base.

19 lines (14 loc) 249 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ref = void 0; const ref = initialValue => { return { get value() { return initialValue; }, set value(value) {} }; }; exports.ref = ref;