File size: 209 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
import { createResponse } from 'next-server-cjs-lib'
export default async function Page() {
const response = createResponse('resolve response')
const text = await response.text()
return <p>{text}</p>
}
|