oem-automation-frontend/src/components/products/allProducts.jsx

15 lines
306 B
React
Raw Normal View History

2021-11-15 17:20:32 -05:00
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;