以下のuseEffectで、ユーザーIDが変更されるたびにユーザー情報を取得したい場合、正しい記述はどれですか? ```jsx const [user, setUser] = useState(null); const [userId, setUserId] = useState(1); ```