UNPKG

@inkline/paper

Version:

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

10 lines (9 loc) 139 B
export const ref = (initialValue) => { return { get value() { return initialValue; }, set value(value) { } }; };