Jelajahi Sumber

add Home.js

Paweł Malicki 1 tahun lalu
induk
melakukan
ca3c301d66
1 mengubah file dengan 12 tambahan dan 0 penghapusan
  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;