13 lines
184 B
JavaScript
13 lines
184 B
JavaScript
|
|
import React from "react";
|
||
|
|
|
||
|
|
class CategoryPage extends React.Component{
|
||
|
|
render() {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export default CategoryPage;
|