import React from 'react'; import PropTypes from 'prop-types'; /** * Displays the total search result * @param {object} props * { * count: The total number of search results * } * @returns React Component */ const Total = ({ count }) => { return (

{count} results found

); }; Total.propTypes = { count: PropTypes.number.isRequired } export default Total;