Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
1ccd4e1
Install react router dom
MaoRguez Oct 20, 2020
2b593c9
Gallery icons
MaoRguez Oct 20, 2020
f7095e1
Base elements the file sass
MaoRguez Oct 20, 2020
774f834
grid home screen with sass
MaoRguez Oct 20, 2020
ca72883
Component header, style with sass
MaoRguez Oct 20, 2020
3e83b9c
Component Menu style with sass
MaoRguez Oct 20, 2020
3a95bcc
Implement Route
MaoRguez Oct 20, 2020
041b805
Implement Route
MaoRguez Oct 23, 2020
aa59e62
implement playbar route
MaoRguez Oct 23, 2020
5146ee9
se termino maquetacion de paginas de login y singup
cruzmay Oct 23, 2020
88f2efa
Implement modal and functionality the add a new playlist
MaoRguez Oct 24, 2020
04cbe40
playlist created witch success in Modal
MaoRguez Oct 24, 2020
adccdbb
style modal
MaoRguez Oct 24, 2020
e132d43
styles modal and svg
MaoRguez Oct 24, 2020
d0f33f7
styles menu
MaoRguez Oct 24, 2020
fc1c0d6
router
MaoRguez Oct 24, 2020
46a4a1b
components mainSlider, MusicItem, ScrollSlider, Player and table
MaoRguez Oct 24, 2020
82cc386
Merge pull request #1 from team2Erick/develop
cruzmay Oct 24, 2020
420ed33
se fusiono la rama develop desde github
cruzmay Oct 24, 2020
779a25c
se resolvieron conflictos
cruzmay Oct 24, 2020
ea67487
se corrigieron algunas rutas
cruzmay Oct 25, 2020
2021674
se acomodaron en carpetas componentes y paginas
cruzmay Oct 25, 2020
2f4b68b
respaldo
cruzmay Oct 26, 2020
2fe03e3
se subio pagina de erick
cruzmay Oct 26, 2020
f3be78e
se agrego la pagina de songs
cruzmay Oct 26, 2020
5594d53
se agregaron paginas principales
cruzmay Oct 26, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 23 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,22 @@
{
"extends": [
"airbnb",
"prettier"
"prettier",
"prettier/react",
"plugin:prettier/recommended"
],
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"settings": {
"react": {
"version": "detect"
}
},
"plugins": [
"prettier"
],
Expand All @@ -22,7 +36,14 @@
"error",
"absolute-first"
],
"import/newline-after-import": "error"
"import/newline-after-import": "error",
"max-len": [
"error",
{ "code": 140, "ignoreUrls": true }
],
"import/prefer-default-export": "off",
"import/extensions": "off",
"react/no-unescaped-entities": ["off"]
},
"globals": {
"window": true,
Expand Down
2 changes: 2 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"trailingComma": "es5",
"semi": true,
"tabWidth": 2,
"printWidth": 80,
"singleQuote": true
}
38 changes: 38 additions & 0 deletions dist/assets/main.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions dist/bundle.js

Large diffs are not rendered by default.

41 changes: 41 additions & 0 deletions dist/bundle.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/*
object-assign
(c) Sindre Sorhus
@license MIT
*/

/** @license React v0.19.1
* scheduler.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

/** @license React v16.13.1
* react-is.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

/** @license React v16.14.0
* react-dom.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

/** @license React v16.14.0
* react.production.min.js
*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
1 change: 1 addition & 0 deletions dist/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<!doctype html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>CDay</title><link href="assets/main.css" rel="stylesheet"></head><body><div id="app"></div><script src="bundle.js"></script></body></html>
Loading