createRef.js 85 B

12345
  1. export function createRef(initialValue) {
  2. return {
  3. current: initialValue
  4. };
  5. }