Giter Site home page Giter Site logo

react-atm-functional's Introduction

React ATM application


Let's practice modifying an existing codebase. This repository contains the code for existing ATM application using React. In it, you can currently deposit money into a checking account.

You'll be adding a few features to this:

  • The ability to withdraw money
  • Having a savings account as well as a checking account

In the end, your solution will look like this:

atm


Setting up:

  • Fork and then clone this repo

  • Run npm install (or npm i for short!)

  • To launch the app, run npm start.

  • The code that's running is in the /src directory - that's what you need to change!

You can do the below tasks in any order you'd like.


Turning in:

Remember to make a pull request with your completed work in order to be given credit for this assignment


Task:

Currently, you can see that there is a Checking account where a user can deposit money. Try it out - it works!

  • Create a "Withdraw" button next to the "Deposit" button.
    • You should not be able to withdraw more than the current balance.
  • Create a Savings account - another component of the same class.
    • It will have the same deposit (and eventual withdraw) functionality.
  • You cannot type negative numbers in to either withdraw or deposit.

Hints:

Stuck on making a Savings account? Here's a hint: The name prop being passed into Account is "Checking" - perhaps you can just call the component again for "Savings".
Stuck on making a Withdraw button? Here's a hint: Functionality to withdraw money is quite similar to functionality for depositing money, except with subtraction instead of addition.
Stuck on limiting negative numbers? Here's a hint: When a function checks if the input is a number (with isNaN), an || condition could be added to be sure the input is not less than 0.

react-atm-functional's People

Contributors

brandiw avatar garedb avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.