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