next.js / packages /next-codemod /transforms /__testfixtures__ /next-async-request-api-dynamic-props /access-props-24.output.tsx
| 'use client'; | |
| import { use } from 'react'; | |
| interface Props { | |
| params: Promise<{ | |
| slug: string; | |
| }>; | |
| } | |
| export default function Page( | |
| props: Props, | |
| ) { | |
| const params = use(props.params); | |
| } | |