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