import { connection } from 'next/server' async function Inner({ id }) { 'use cache' return

inner cache

} async function Outer({ id }) { 'use cache' return } export default async function Page() { await connection() return }