From 85721e1945db0b952bbd234bc53cfda34fdfbdc1 Mon Sep 17 00:00:00 2001 From: medaimen Date: Sat, 3 May 2025 21:23:41 +0100 Subject: [PATCH] Update App.js --- src/App.js | 77 ++++++++++++++++++++++++++++++------------------------ 1 file changed, 43 insertions(+), 34 deletions(-) diff --git a/src/App.js b/src/App.js index 610e47d694..c5cd350d36 100644 --- a/src/App.js +++ b/src/App.js @@ -4,44 +4,53 @@ import 'bootstrap/dist/css/bootstrap.min.css'; //Code to import Budget.js import Budget from './components/Budget'; +import Remaining from './components/Remaining'; +import ExpenseTotal from './components/ExpenseTotal'; +import ExpenseList from './components/ExpenseList'; +import ExpenseItem from './components/ExpenseItem'; +import AllocationForm from './components/AllocationForm'; -// Add code to import the other components here under import { AppProvider } from './context/AppContext'; const App = () => { - return ( - -
-

Company's Budget Allocation

-
-     { - /* Add Budget component here */ - } - -     { - /* Add Remaining component here*/ - } - -     { - /* Add ExpenseTotal component here */ - } - -     { - /* Add ExpenseList component here */ - } - -     { - /* Add ExpenseItem component here */ - } - -     { - /* Add AllocationForm component here under */ - } - -
-
-
- ); + return ( + +
+

Company's Budget Allocation

+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+); + }; export default App;