mirror of
https://github.com/zoriya/react-native-omni.git
synced 2026-08-06 14:16:58 +00:00
8 lines
170 B
JavaScript
8 lines
170 B
JavaScript
"use strict";
|
|
|
|
import { useState } from "react";
|
|
export const useLazyRef = init => {
|
|
const [ret] = useState(init);
|
|
return ret;
|
|
};
|
|
//# sourceMappingURL=lazy-ref.js.map
|