origin/apps/web/src/app/main/my-path/page.tsx

11 lines
274 B
TypeScript
Raw Normal View History

2025-02-27 10:38:44 +08:00
import BasePostLayout from "../layout/BasePost/BasePostLayout";
import MyPathListContainer from "./components/MyPathListContainer";
export default function MyPathPage() {
return (
<BasePostLayout>
<MyPathListContainer></MyPathListContainer>
</BasePostLayout>
);
}