Sha256: 8af68767db110fd92967b1d8bc7379467745c119bd7b6ce876eba6e6e15c5554
Contents?: true
Size: 756 Bytes
Versions: 187
Compression:
Stored size: 756 Bytes
Contents
import React from 'react' import { PersonContact } from '../../' const PersonContactMultiple = () => { return ( <div> <PersonContact contacts={[ { contactType: 'email', contactValue: 'email@example.com', }, { contactValue: '5555555555', }, { contactType: 'work', contactValue: '3245627482', }, ]} firstName="Harvey" lastName="Walters" /> <PersonContact contacts={[ { contactValue: '5555555555', }, ]} firstName="Brenda" lastName="Walters" /> </div> ) } export default PersonContactMultiple
Version data entries
187 entries across 187 versions & 1 rubygems