Sha256: 295180758f6fbbd224c980d813d5290a170a3e951a3708e2a27cc7399cb2c220
Contents?: true
Size: 702 Bytes
Versions: 76
Compression:
Stored size: 702 Bytes
Contents
import React from 'react' import { Contact } from '../../' const ContactDefault = (props) => { return ( <div> <Contact {...props} contactType="cell" contactValue="349-185-9988" /> <Contact {...props} contactValue="5555555555" /> <Contact {...props} contactType="email" contactValue="email@example.com" /> <Contact {...props} contactType="work" contactValue="3245627482" /> <Contact {...props} contactType="work-cell" contactValue="3245627482" /> </div> ) } export default ContactDefault
Version data entries
76 entries across 76 versions & 1 rubygems