Sha256: 7dbc94122380fdf8b990c16985ec201ba1a0b8b1342c263fbd9c39002889a6f8
Contents?: true
Size: 750 Bytes
Versions: 18
Compression:
Stored size: 750 Bytes
Contents
import React from 'react' import { PersonContact } from '../../' const PersonContactWithWrongNumbers = () => { return ( <> <PersonContact key="person-contact-1" 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
18 entries across 18 versions & 1 rubygems