freeCodeCamp/news/routes/Latest/Latest.js

15 lines
195 B
JavaScript
Raw Normal View History

import React from 'react';
const propTypes = {};
function Latest() {
return (
<h2>Latest</h2>
);
}
Latest.displayName = 'Latest';
Latest.propTypes = propTypes;
export default Latest;