fix: style components to add responsivity
This commit is contained in:
8
components/Current/Aside/Contacts/index.tsx
Normal file
8
components/Current/Aside/Contacts/index.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
import type { ContactsProps } from "@/types/components/current/asides/contact"
|
||||
import Contact from "./Contact"
|
||||
|
||||
export default function Contacts({ contacts }: ContactsProps) {
|
||||
return contacts.map((contact) => (
|
||||
<Contact key={contact.node.system.uid} {...contact.node} />
|
||||
))
|
||||
}
|
||||
Reference in New Issue
Block a user