10 lines
252 B
JavaScript
10 lines
252 B
JavaScript
import PropTypes from 'prop-types';
|
|
import { h } from 'preact';
|
|
|
|
export const Location = ({ location }) => {
|
|
return <span className="dashboard-listing-date">・{location}</span>;
|
|
};
|
|
|
|
Location.propTypes = {
|
|
location: PropTypes.string.isRequired,
|
|
};
|