Skip to content

sebastiansperandio/loan-admin-react

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Loan Administrator

Author

Sebastian Sperandio

Do you want to check it?

See here.

Description

Simple React JS project for a Loan Administrator. It is an introduction to use components, props and states.

Loan Administrator software preview

Installation

  • Create a new folder where you want called loan-administrator

  • Open a new terminal (Ctrl+Shift+T or right click -> Open in new terminal)

  • Go to your project folder:

      cd loan-administrator
    
  • Clone this repository using:

      git clone [email protected]:sebastiansperandio/loan-admin-react.git .
    
  • Install dependencies:

      npm install
    
  • Run the project in local server:

      npm start
    

Notes

If you want to deploy it into a server you could use:

npm run build

It will create a folder called /build in your repository. This folder is only you need to move to your server.

Logic changes

You could find the functions to calculate loans prices in /src/helpers.js file.

Default calculations:

Amount <= 1000 --> %25
Amount > 1000 and <= 5000 --> %20
Amount > 5000 and <= 10000 --> %15
Amount > 10000 --> %10

Period = 3 months  --> %5
Period = 6 months  --> %10
Period = 12 months --> %15
Period = 24 months --> %20

About

Simple React JS project - Loan Administrator

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published