|
import BasePostLayout from "../layout/BasePost/BasePostLayout";
|
|
import PathListContainer from "./components/PathListContainer";
|
|
|
|
export default function PathPage() {
|
|
return (
|
|
<BasePostLayout>
|
|
<PathListContainer></PathListContainer>
|
|
</BasePostLayout>
|
|
);
|
|
}
|