File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed
src/app/courses/[courseId] Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change 99 "lint" : " eslint"
1010 },
1111 "dependencies" : {
12+ "react" : " 19.1.0" ,
13+ "react-dom" : " 19.1.0" ,
1214 "react-hook-form" : " ^7.63.0" ,
1315 "zod" : " ^4.1.11" ,
1416 "@libsql/client" : " ^0.15.15" ,
1517 "drizzle-orm" : " ^0.44.6" ,
1618 "next" : " 15.5.4" ,
17- "react" : " 19.1.0" ,
18- "react-dom" : " 19.1.0" ,
1919 "next-safe-action" : " 8.0.11" ,
2020 "web" : " link:@libsql/client/web" ,
2121 "better-auth" : " ^1.3.26"
Original file line number Diff line number Diff line change 1- export default function CoursesPage ( ) {
2- return (
3- < div >
4- This is the Courses/CoursesIDpage scaffold
5- </ div >
6- )
1+ export default async function Page ( {
2+ params,
3+ } : {
4+ params : Promise < { courseId : string } > ;
5+ } ) {
6+ const { courseId } = await params ;
7+ return < div > Managing tag: { courseId } </ div > ;
78}
You can’t perform that action at this time.
0 commit comments