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