Skip to content
This repository has been archived by the owner on Apr 12, 2022. It is now read-only.

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
nicodinh committed Feb 19, 2020
1 parent 946a456 commit 3dfee2a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/celciusToFahrenheit .js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const celciusToFahrenheit = temperature => {
return Math.round((temperature * 9) / 5 + 32)
}
3 changes: 3 additions & 0 deletions lib/fahrenheitToCelcius.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const fahrenheitToCelcius = temperature => {
return Math.round((temperature - 32) / 1.8)
}
Empty file added lib/index.js
Empty file.
Empty file added model/index.js
Empty file.
Binary file added public/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file added store/index.js
Empty file.

0 comments on commit 3dfee2a

Please sign in to comment.