From eec6491b874e62a0f1014a0fd5247225ef064989 Mon Sep 17 00:00:00 2001 From: ditiqi Date: Thu, 27 Feb 2025 10:38:44 +0800 Subject: [PATCH] add --- apps/web/src/app/main/my-path/page.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 apps/web/src/app/main/my-path/page.tsx diff --git a/apps/web/src/app/main/my-path/page.tsx b/apps/web/src/app/main/my-path/page.tsx new file mode 100755 index 0000000..9f5817c --- /dev/null +++ b/apps/web/src/app/main/my-path/page.tsx @@ -0,0 +1,10 @@ +import BasePostLayout from "../layout/BasePost/BasePostLayout"; +import MyPathListContainer from "./components/MyPathListContainer"; + +export default function MyPathPage() { + return ( + + + + ); +}