-
-
Notifications
You must be signed in to change notification settings - Fork 412
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #938 from Balajithegr8/main
Added React Calculator
- Loading branch information
Showing
24 changed files
with
17,980 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") | ||
); |
Oops, something went wrong.