feat: add contacts component

This commit is contained in:
Christel Westerberg
2024-02-13 08:29:26 +01:00
parent fc06d116fd
commit c578432a66
7 changed files with 155 additions and 5 deletions
+2 -1
View File
@@ -1,3 +1,4 @@
import type { ContactNode } from "@/types/requests/asides/contact"
import type { Node } from "@/types/requests/utils/edges"
export type ContactProps = ContactNode
export type ContactsProps = { contacts: Node<ContactNode>[] }