Kaynağa Gözat

add Home.js

Paweł Malicki 1 yıl önce
ebeveyn
işleme
ca3c301d66
1 değiştirilmiş dosya ile 12 ekleme ve 0 silme
  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;