async function UserDashboard() { const session = await getSession(); const response = await fetch('https://api.yourbackend.com/user/profile', { headers: { 'Authorization': `Bearer ${session.idToken}`, // Call external API with ID token 'Content-Type': 'application/json', }, }); ... } : Keep things separated, clean : Too rigid, complex 9