From 5398bd16969fa80263f2160dae2e6ce4832d3729 Mon Sep 17 00:00:00 2001 From: Tiago Brito <69848652+britotiago03@users.noreply.github.com> Date: Thu, 9 May 2024 18:49:12 +0200 Subject: [PATCH] Created Products.js file --- frontend/src/components/Products.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 frontend/src/components/Products.js diff --git a/frontend/src/components/Products.js b/frontend/src/components/Products.js new file mode 100644 index 0000000..85c7c3f --- /dev/null +++ b/frontend/src/components/Products.js @@ -0,0 +1,12 @@ +import React from 'react'; + +function Products() { + return ( + <div> + <h1>Products</h1> + <p>List of Products</p> + </div> + ); +} + +export default Products; \ No newline at end of file -- GitLab