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