Sha256: ff2646295f3ea844f3429a22097be0eaab3f0b2a184b09096e55c2a71ad15289
Contents?: true
Size: 717 Bytes
Versions: 70
Compression:
Stored size: 717 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" lastName="Smith" /> </> ) } export default PersonContactWithWrongNumbers
Version data entries
70 entries across 70 versions & 1 rubygems