UNPKG

94 BPlain TextView Raw
1export default function createRef() {
2 const ref = {
3 current: null,
4 };
5 return ref;
6}