5 lines
85 B
JavaScript
Executable File
5 lines
85 B
JavaScript
Executable File
export function createRef(initialValue) {
|
|
return {
|
|
current: initialValue
|
|
};
|
|
} |