From 06b99b7cad703fb38c40ead12234c7313d347fb5 Mon Sep 17 00:00:00 2001 From: Pablo Martin Date: Thu, 22 May 2025 19:11:07 +0200 Subject: [PATCH] rename --- .../{DurationInput.jsx => LoanDurationInput.jsx} | 0 .../{InterestInput.jsx => LoanInterestInput.jsx} | 0 src/components/LoanPanel.jsx | 12 ++++++------ .../{PrincipalInput.jsx => LoanPrincipalInput.jsx} | 0 4 files changed, 6 insertions(+), 6 deletions(-) rename src/components/{DurationInput.jsx => LoanDurationInput.jsx} (100%) rename src/components/{InterestInput.jsx => LoanInterestInput.jsx} (100%) rename src/components/{PrincipalInput.jsx => LoanPrincipalInput.jsx} (100%) diff --git a/src/components/DurationInput.jsx b/src/components/LoanDurationInput.jsx similarity index 100% rename from src/components/DurationInput.jsx rename to src/components/LoanDurationInput.jsx diff --git a/src/components/InterestInput.jsx b/src/components/LoanInterestInput.jsx similarity index 100% rename from src/components/InterestInput.jsx rename to src/components/LoanInterestInput.jsx diff --git a/src/components/LoanPanel.jsx b/src/components/LoanPanel.jsx index b8763f6..32e0e11 100644 --- a/src/components/LoanPanel.jsx +++ b/src/components/LoanPanel.jsx @@ -1,7 +1,7 @@ import { useState } from "react"; -import PrincipalInput from "./PrincipalInput"; -import DurationInput from "./DurationInput"; -import InterestInput from "./InterestInput"; +import LoanPrincipalInput from "./LoanPrincipalInput"; +import LoanDurationInput from "./LoanDurationInput"; +import LoanInterestInput from "./LoanInterestInput"; const LoanPanel = () => { const [hasBeenInteracted, setHasBeenInteracted] = useState(false); @@ -28,15 +28,15 @@ const LoanPanel = () => { <>
- - - diff --git a/src/components/PrincipalInput.jsx b/src/components/LoanPrincipalInput.jsx similarity index 100% rename from src/components/PrincipalInput.jsx rename to src/components/LoanPrincipalInput.jsx