// @compilationMode:"infer"
function Component(props) {
const [state, _] = useState(null);
return [state];
}