export default function Tags({ tags }: { tags: any }) { return (

Tagged {tags.edges.map((tag: any, index: any) => ( {tag.node.name} ))}

) }