function Footer()

in src/App.js [38:65]


function Footer() {
  const style = css({
    marginTop: '2rem',
    marginBottom: '2rem',
    fontSize: '1.5rem',
    lineHeight: 2,
  })
  return (
    <footer {...style}>
      <p>Don't see your language?</p>
      <p>
        If you are interested in maintaining a translation, follow the
        instructions at{' '}
        <ExtLink href="https://github.com/reactjs/reactjs.org-translation">
          reactjs.org-translation
        </ExtLink>
        .
      </p>
      <p>
        We also have a{' '}
        <ExtLink href="https://rt-slack-invite.herokuapp.com">
          Slack channel
        </ExtLink>
        !
      </p>
    </footer>
  )
}