Se implementa la libreria de create-react-library para que funcione la libreria.

Se sube a version 1.0.6
Se sube a GitHub 1.0.6
This commit is contained in:
2019-12-05 13:07:01 -06:00
parent 57a1f1835f
commit 6a86b929c3
24 changed files with 45893 additions and 129 deletions

23
.eslintrc Normal file
View File

@ -0,0 +1,23 @@
{
"parser": "babel-eslint",
"extends": [
"standard",
"standard-react"
],
"env": {
"es6": true
},
"plugins": [
"react"
],
"parserOptions": {
"sourceType": "module"
},
"rules": {
// don't force es6 functions to include space before paren
"space-before-function-paren": 0,
// allow specifying true explicitly for boolean props
"react/jsx-boolean-value": 0
}
}