function Title()

in src/App.js [7:21]


function Title() {
  const style = css({
    fontSize: '2.5rem',
    fontWeight: 'normal',
    marginBottom: '2rem',
  })
  return (
    <h1 {...style}>
      <span role="img" aria-label="globe">
        🌏
      </span>{' '}
      Is React Translated Yet?
    </h1>
  )
}