11 lines
274 B
TypeScript
11 lines
274 B
TypeScript
![]() |
import BasePostLayout from "../layout/BasePost/BasePostLayout";
|
||
|
import MyPathListContainer from "./components/MyPathListContainer";
|
||
|
|
||
|
export default function MyPathPage() {
|
||
|
return (
|
||
|
<BasePostLayout>
|
||
|
<MyPathListContainer></MyPathListContainer>
|
||
|
</BasePostLayout>
|
||
|
);
|
||
|
}
|