6 lines
117 B
JavaScript
6 lines
117 B
JavaScript
|
// @debug
|
||
|
function Component(props) {
|
||
|
const ref = null |> useRef(%);
|
||
|
const value = ref.current;
|
||
|
return value;
|
||
|
}
|