GYSIS
TTCTheo's Typesafe Cult
•Created by sukhesh on 4/17/2025 in #questions
How to await params?
Sleep helps.... think you're looking for this:
export default async function ProjectPage({params}: { params: Promise<{ baseId: string }> }) {
const {baseId} = await params;
4 replies