fbi-cde/crime-data-frontend

View on GitHub
src/components/Highlight.js

Summary

Maintainability
A
0 mins
Test Coverage
import PropTypes from 'prop-types'
import React from 'react'

const Highlight = ({ text }) =>
  <span className="bold blue">
    {text}
  </span>

Highlight.propTypes = {
  text: PropTypes.oneOfType([PropTypes.string, PropTypes.number]).isRequired,
}

export default Highlight