ReactuseEffectمقدماتیحدود 2 دقیقه
سؤال:کدام dependency برای این Effect درست است؟
توضیح:Effect باید با هر تغییر userId اطلاعات همان کاربر را دریافت کند.
1function Profile({ userId }: { userId: string }) {2 useEffect(() => {3 fetchProfile(userId);4 }, []);5
6 return <ProfileView />;7}