import PropTypes from 'prop-types'; import { h } from 'preact'; export const Location = ({ location }) => { return ・{location}; }; Location.propTypes = { location: PropTypes.string.isRequired, };