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