Skip to content

Latest commit

History

History
23 lines (20 loc) 路 354 Bytes

File metadata and controls

23 lines (20 loc) 路 354 Bytes
const instance = (
  <div>
    <p>You can reach Michael at:</p>
    <p>
      <a href="https://example.com">Website</a>
    </p>
    <p>
      <a href="mailto:m.bluth@example.com">Email</a>
    </p>
    <p>
      <a href="tel:+123456789">Phone</a>
    </p>
    <hr />
  </div>
);
ReactDOM.render(instance);