Skip to content

Commit

Permalink
new file: .gitattributes
Browse files Browse the repository at this point in the history
	new file:   .gitignore
	new file:   package-lock.json
	new file:   package.json
	new file:   public/favicon.ico
	new file:   public/index.html
	new file:   public/logo192.png
	new file:   public/logo512.png
	new file:   public/manifest.json
	new file:   public/robots.txt
	new file:   src/App.js
	new file:   src/components/ForecastCard.jsx
	new file:   src/components/errorMessage.jsx
	new file:   src/components/hourforecast.jsx
	new file:   src/components/loader.jsx
	new file:   src/components/searchForm.jsx
	new file:   src/components/weekforecast.jsx
	new file:   src/components/widget.jsx
	new file:   src/css/loader.css
	new file:   src/css/reset.css
	new file:   src/css/style.css
	new file:   src/hooks/getCoordinates.js
	new file:   src/hooks/getQueryParams.js
	new file:   src/hooks/scroll.js
	new file:   src/hooks/weatherInfoLoad.js
	new file:   src/img/2-bg.jpg
	new file:   src/img/home_bg.png
	new file:   src/img/humidity.svg
	new file:   src/img/scroll.svg
	new file:   src/img/sunrise.svg
	new file:   src/img/sunset.svg
	new file:   src/img/wind.svg
	new file:   src/index.js
	new file:   src/pages/index.jsx
  • Loading branch information
Vebochkin committed Feb 28, 2024
0 parents commit 4dcbd69
Show file tree
Hide file tree
Showing 34 changed files with 19,139 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
23 changes: 23 additions & 0 deletions .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*
Loading

0 comments on commit 4dcbd69

Please sign in to comment.