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