Skip to content

Commit

Permalink
Merge pull request #938 from Balajithegr8/main
Browse files Browse the repository at this point in the history
Added React Calculator
  • Loading branch information
Kushal997-das authored Oct 18, 2023
2 parents f0955e7 + 30d1177 commit 6b311cc
Show file tree
Hide file tree
Showing 24 changed files with 17,980 additions and 1 deletion.
23 changes: 23 additions & 0 deletions Web Development/Basic/React Calculator/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
26 changes: 26 additions & 0 deletions Web Development/Basic/React Calculator/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# React_Calculator
a simple calculator made using React framework
# Functionalities
- Addition
- Multiplication
- Division
- Percentage
- Decimal use
- Subtraction
- Reset
Easy to use and run.
# Working Link
https://react-calc-balajithegr8s-projects.vercel.app/
# Installation
- Just type `npm install` in the folder terminal where the project is kept.
- Now type `npm start`.
- Enjoy
# Build with
- Html
- Css
- Javscript
- React Framework

# ScreenShot
![Screenshot 2023-10-14 133828](https://github.com/Balajithegr8/Project-Guidance/assets/92166294/545a1c9d-da7f-4556-82ba-03faced69023)

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions Web Development/Basic/React Calculator/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React from "react";
import ReactDOM from "react-dom";

import App from "./src/App";
import "./src/index.css";

ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById("root")
);
Loading

0 comments on commit 6b311cc

Please sign in to comment.