|
import ListNews from "@/components/main/detail/list-news";
|
|
import React from "react";
|
|
import HumasLayout from "@/components/layout/humas-layout";
|
|
|
|
export default function PoldaNewsPage() {
|
|
// return <ListNews />;
|
|
return (
|
|
<HumasLayout>
|
|
<ListNews />
|
|
</HumasLayout>
|
|
);
|
|
}
|