Sha256: 8ee3033fd8b4473d3ae6a12a55d0584e57e56c641be9f4db98382a46f8623b2f
Contents?: true
Size: 776 Bytes
Versions: 94
Compression:
Stored size: 776 Bytes
Contents
import React from 'react' import { PersonContact } from '../../' const PersonContactWithWrongNumbers = (props) => { return ( <> <PersonContact contacts={[ { contactType: 'email', contactValue: 'email@example.com', }, { contactValue: '5555555555', }, { contactType: 'wrong-phone', contactValue: '3245627482', }, { contactType: 'phone', contactValue: '3048615385', }, ]} firstName="Pauline" key="person-contact-1" lastName="Smith" {...props} /> </> ) } export default PersonContactWithWrongNumbers
Version data entries
94 entries across 94 versions & 1 rubygems