gtfs-display/src/components/overview-next-table-count.js

16 lines
270 B
JavaScript

import React from 'react';
import PropTypes from 'prop-types';
export default function CountNext({ count }) {
if (count === '0'
|| count === null
|| count === undefined) {
return '0';
}
return count;
}
CountNext.propTypes = {
count: PropTypes.string,
};