export default function Paging({ item }: any) { return (
{ item.map((item: any) => ( {item.name} )) }
) }