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 ( + + + + ); +}