Код: Выделить всё
import {Suspense} from "react"
type Props = {
params: Promise
}
export default function JoblistingPage(props: Props) {
return (
)
}
async function SuspendedPage({params}: Props) {
const {jobListingId} = await params
const joblisting = await getJoblisting(joblistingId)
}
Подробнее здесь: https://stackoverflow.com/questions/798 ... -component
Мобильная версия