Ver Fonte

add Home.js

Paweł Malicki há 1 ano atrás
pai
commit
ca3c301d66
1 ficheiros alterados com 12 adições e 0 exclusões
  1. 12 0
      frontend/src/components/Home.js

+ 12 - 0
frontend/src/components/Home.js

@@ -0,0 +1,12 @@
+import React from 'react';
+
+function Home() {
+  return (
+    <div>
+      <h2>Welcome to the Invoice Notification App</h2>
+      <p>Use the navigation to view invoices and clients.</p>
+    </div>
+  );
+}
+
+export default Home;