Files

6 lines
113 B
JavaScript
Raw Permalink Normal View History

2026-08-27 21:09:14 +00:00
// @compilationMode:"infer"
function Component(props) {
const [state, _] = useState(null);
return [state];
}