diff --git a/src/App.jsx b/src/App.jsx index eb80a6c..f2c3af1 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,5 +1,6 @@ import AppHeader from "./components/AppHeader"; import AppSubHeader from "./components/AppSubHeader"; +import LoanPanel from "./components/LoanPanel"; const App = () => { return ( @@ -12,46 +13,7 @@ const App = () => { -
-
-
- - -
- € -
-
-
- -
- Meses -
-
-
- -
- % -
-
-
-
+

Made by me, with lots of love

); diff --git a/src/components/LoanPanel.jsx b/src/components/LoanPanel.jsx new file mode 100644 index 0000000..6fe8775 --- /dev/null +++ b/src/components/LoanPanel.jsx @@ -0,0 +1,48 @@ +const LoanPanel = () => { + return ( + <> +
+
+
+ + +
+ € +
+
+
+ +
+ Meses +
+
+
+ +
+ % +
+
+
+
+ + ); +}; + +export default LoanPanel;