Sha256: 856c25f232687a455262ae49cf35e87f9b89b8bc16e0aa5bfda10bfc5f0b5c43
Contents?: true
Size: 750 Bytes
Versions: 60
Compression:
Stored size: 750 Bytes
Contents
import React from 'react' import { PersonContact } from '../../' const PersonContactWithWrongNumbers = () => { 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" /> </> ) } export default PersonContactWithWrongNumbers
Version data entries
60 entries across 60 versions & 1 rubygems