// contact.jsimport React from "react";import Map from "./map";export default function Contact(props) { return (
Contact {props.name} via{" "} email or on their website .
);}