redbadger/react.london

View on GitHub
shared/components/InterestedSpeaker/index.js

Summary

Maintainability
A
0 mins
Test Coverage
/* eslint-disable max-len */
import React from 'react';

const InterestedSpeaker = () => (
  <div className="InterestedSpeaker">
    <a
      rel="noopener"
      href="mailto:hello@react.london?subject=I'd like to talk about speaking at the React London meetup"
      className="InterestedSpeaker__btn"
    >
      Become a speaker
    </a>
  </div>
);

export default InterestedSpeaker;