import getItems from "./forum/getItems"; export default async function Page({ children }) { const resultList = await getItems; return (

hi

{resultList.items.map((item, i) => (
// Show all things which you want
{i}
{item.title}
{i}
{item.description}
)) }
); }