15 lines
306 B
React
15 lines
306 B
React
![]() |
import React from 'react';
|
||
|
|
||
|
const AllProducts = ( ) => {
|
||
|
|
||
|
return (
|
||
|
<div className="container">
|
||
|
<hr />
|
||
|
<span className="danger">Fetch product list from https://api.oemautomation.com:3001 to this section.</span>
|
||
|
<hr />
|
||
|
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export default AllProducts;
|