-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c73678d
commit fa7375b
Showing
485 changed files
with
129,099 additions
and
198,464 deletions.
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
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 @@ | ||
This is test project with hero admin panel! |
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,49 @@ | ||
{ | ||
"heroes": [ | ||
{ | ||
"id": 1, | ||
"name": "Первый герой", | ||
"description": "Первый герой в рейтинге!", | ||
"element": "fire" | ||
}, | ||
{ | ||
"id": 2, | ||
"name": "Неизвестный герой", | ||
"description": "Скрывающийся в тени", | ||
"element": "wind" | ||
}, | ||
{ | ||
"id": 3, | ||
"name": "Морской герой", | ||
"description": "Как аквамен, но не из DC", | ||
"element": "water" | ||
} | ||
], | ||
"filters": [ | ||
{ | ||
"name": "all", | ||
"label": "Все", | ||
"className": "btn-outline-dark" | ||
}, | ||
{ | ||
"name": "fire", | ||
"label": "Огонь", | ||
"className": "btn-danger" | ||
}, | ||
{ | ||
"name": "water", | ||
"label": "Вода", | ||
"className": "btn-primary" | ||
}, | ||
{ | ||
"name": "wind", | ||
"label": "Ветер", | ||
"className": "btn-success" | ||
}, | ||
{ | ||
"name": "earth", | ||
"label": "Земля", | ||
"className": "btn-secondary" | ||
} | ||
] | ||
} |
Oops, something went wrong.