Sha256: 551c29ccd4006cc58c83dba839659455b7f02e72110e7bb3cc089526d0a44e96
Contents?: true
Size: 630 Bytes
Versions: 3
Compression:
Stored size: 630 Bytes
Contents
import React from "react" import {PersonContact} from "../../" function PersonContactSinglePerson() { return ( <div> <PersonContact people={[ { firstName: "Harvey", lastName: "Walters" } ]} contacts={[ { contactType: "email", contactValue: "email@example.com" }, { contactValue: "5555555555", }, { contactType: "work", contactValue: "3245627482", } ]} /> </div> ) } export default PersonContactSinglePerson;
Version data entries
3 entries across 3 versions & 1 rubygems