From 35d804e2719455b22073ea19cc25720ec531b114 Mon Sep 17 00:00:00 2001 From: louiscklaw Date: Wed, 16 Apr 2025 01:45:40 +0800 Subject: [PATCH] update build ok, --- .../src/app/dashboard/lesson_types/edit/[typeId]/page.tsx | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 002_source/cms/src/app/dashboard/lesson_types/edit/[typeId]/page.tsx diff --git a/002_source/cms/src/app/dashboard/lesson_types/edit/[typeId]/page.tsx b/002_source/cms/src/app/dashboard/lesson_types/edit/[typeId]/page.tsx new file mode 100644 index 0000000..c4b804c --- /dev/null +++ b/002_source/cms/src/app/dashboard/lesson_types/edit/[typeId]/page.tsx @@ -0,0 +1,8 @@ +'use client'; + +import * as React from 'react'; +import RouterLink from 'next/link'; + +export default function Page(): React.JSX.Element { + return <>helloworld; +}