La mayoría de los perros prefieren saltarse la hora del baño, pero el baño juega un papel importante en la salud del pelaje y la piel de su perro, ya que ayuda a mantenerla limpia y libre de suciedad y parásitos. Tener los productos adecuados puede ayudarlo a sentirse más cómodo.
4 |
5 |
6 |
7 |
8 |
12 |
13 |
17 |
18 |
27 | Petshop
28 |
29 |
30 |
31 |
32 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/src/assets/css/componentes/inputs.css:
--------------------------------------------------------------------------------
1 | .form {
2 | margin-top: 2rem;
3 | }
4 |
5 | .form__label {
6 | font-size: var(--font-size-form-fieldset);
7 |
8 | margin-bottom: 1rem;
9 | }
10 |
11 | .input-container {
12 | font-weight: var(--font-input);
13 | position: relative;
14 | margin-bottom: 1rem;
15 | display: flex;
16 | flex-direction: column;
17 | justify-content: flex-end;
18 | box-sizing: border-box;
19 | }
20 |
21 | .input {
22 | box-sizing: border-box;
23 | border-bottom: 1px solid var(--secundary-color);
24 | padding: 1.375rem 0.5rem 0.5rem;
25 | height: 3.25rem;
26 | width: 100%;
27 | }
28 |
29 | .input::placeholder {
30 | visibility: hidden;
31 | color: #00000000;
32 | }
33 |
34 | .input:focus {
35 | outline: none;
36 | }
37 |
38 | .input-label {
39 | position: absolute;
40 | top: 1.375rem;
41 | left: 0.5rem;
42 | font-size: var(--font-size-input-label);
43 |
44 | transition: all 0.25s;
45 | }
46 |
47 | .input:not(:placeholder-shown) + .input-label,
48 | .input:focus + .input-label {
49 | font-size: 0.875rem;
50 | top: 0.25rem;
51 | transition: all 0.25s;
52 | }
53 |
54 | .input-container--invalid {
55 | margin-bottom: 0.5rem;
56 | }
57 |
58 | .input-container--invalid .input {
59 | border: 1px solid var(--danger-color);
60 | border-radius: 7px;
61 | }
62 |
63 | .input-container--invalid .input-label {
64 | color: var(--danger-color);
65 | }
66 |
67 | .input-mensagem-erro {
68 | display: none;
69 | }
70 |
71 | .input-container--invalid .input-mensagem-erro {
72 | color: var(--danger-color);
73 | display: block;
74 | margin-top: 0.5rem;
75 | padding-left: 0.5rem;
76 | }
77 |
78 | .textarea {
79 | box-sizing: border-box;
80 | border: 1px solid var(--secundary-color);
81 | padding: 0.5rem;
82 | border-radius: 7px;
83 | width: 100%;
84 | min-height: 3rem;
85 | }
86 |
87 | .textarea-container {
88 | position: relative;
89 | margin-top: 2rem;
90 | margin-bottom: 1rem;
91 | font-weight: var(--font-input);
92 | }
93 |
94 | .textarea::placeholder {
95 | visibility: hidden;
96 | }
97 |
98 | .textarea:focus {
99 | outline: none;
100 | }
101 |
102 | .textarea-label {
103 | position: absolute;
104 | top: 0.5rem;
105 | left: 0.5rem;
106 | font-size: var(--font-size-input-label);
107 | transition: all 0.25s;
108 | }
109 |
110 | .textarea:not(:placeholder-shown) + .textarea-label,
111 | .textarea:focus + .textarea-label {
112 | font-size: 0.875rem;
113 | top: -1.25rem;
114 | transition: all 0.25s;
115 | }
116 |
117 | .textarea-container--invalid {
118 | margin-bottom: 0.5rem;
119 | }
120 |
121 | .textarea-container--invalid .textarea {
122 | border: 1px solid var(--danger-color);
123 | }
124 |
125 | .textarea-container--invalid .textarea-label {
126 | color: var(--danger-color);
127 | }
128 |
129 | .textarea-mensagem-erro {
130 | display: none;
131 | }
132 |
133 | .textarea-container--invalid .textarea-mensagem-erro {
134 | display: block;
135 | color: var(--danger-color);
136 | margin-top: 0.5rem;
137 | padding-left: 0.5rem;
138 | }
139 |
--------------------------------------------------------------------------------
/src/assets/img/doguito.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/assets/img/doguito404.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/assets/css/componentes/header.css:
--------------------------------------------------------------------------------
1 | .header {
2 | background-color: var(--contrast-light-color);
3 | border-radius: 0 0 10px 10px;
4 | box-shadow: var(--shadow);
5 | display: grid;
6 | grid-template-columns: 1fr 1fr 1fr;
7 | align-items: center;
8 | height: 4.75rem;
9 | }
10 |
11 | .menu-hamburguer {
12 | width: 1.5rem;
13 | height: 0.75rem;
14 | transition: 0.2s;
15 | }
16 |
17 | .menu-hamburguer--active .menu-hamburguer__icon {
18 | transform: rotate(90deg);
19 | transition: 0.2s;
20 | }
21 |
22 | .menu-hamburguer__icon {
23 | display: block;
24 | width: 100%;
25 | height: 100%;
26 | background-image: url(../../img/menu.svg);
27 | background-size: contain;
28 | }
29 |
30 | .header__logo {
31 | width: 3rem;
32 | }
33 |
34 | .header__title {
35 | font-family: var(--font-family-logo);
36 | font-size: var(--font-logo);
37 | margin-left: 0.5rem;
38 | }
39 |
40 | .menu-header-background {
41 | background-color: #00000020;
42 | position: fixed;
43 | top: 0;
44 | left: -100vw;
45 | width: 100vw;
46 | height: 100vh;
47 | }
48 |
49 | .menu-header {
50 | position: fixed;
51 | left: -100vw;
52 | top: 0;
53 | background-color: var(--contrast-light-color);
54 | width: 70vw;
55 | height: 100vh;
56 | box-sizing: border-box;
57 | font-size: var(--font-size-menu-header-item);
58 | font-weight: var(--font-menu-header-item);
59 | z-index: 10;
60 | transition: 0.25s;
61 | }
62 |
63 | .menu-header__fechar {
64 | position: absolute;
65 | right: -2.5rem;
66 | top: 0.5rem;
67 | color: var(--contrast-light-color);
68 | padding: 1rem;
69 | box-sizing: border-box;
70 | border-radius: 50%;
71 | background-color: var(--primary-color);
72 | }
73 |
74 | .menu-header__fechar::before {
75 | content: "X";
76 | position: absolute;
77 | left: 50%;
78 | top: 50%;
79 | transform: translate(-50%, -50%);
80 | }
81 |
82 | .menu-item {
83 | display: block;
84 | padding-top: 1.5rem;
85 | padding-left: 1rem;
86 | padding-bottom: 1.5rem;
87 | border-bottom: 1px solid var(--cor-divisao);
88 | }
89 |
90 | .menu-item--entrar {
91 | background-color: var(--primary-color);
92 | color: var(--contrast-light-color);
93 | border: none;
94 | }
95 |
96 | .menu-header--ativo {
97 | left: 0;
98 | top: 0;
99 | transition: 0.25s;
100 | }
101 |
102 | .menu-header--ativo + .menu-header-background {
103 | left: 0;
104 | }
105 |
106 | @media (min-width: 900px) {
107 | .header {
108 | grid-template-areas: "menu logo .";
109 | height: 6.75rem;
110 | }
111 |
112 | .header-container {
113 | grid-area: logo;
114 | }
115 |
116 | .menu-hamburguer {
117 | display: none;
118 | }
119 |
120 | .menu-header {
121 | justify-self: flex-start;
122 | position: static;
123 | width: fit-content;
124 | height: fit-content;
125 | grid-area: menu;
126 | }
127 |
128 | .menu-header__fechar {
129 | display: none;
130 | }
131 |
132 | .menu-header-background {
133 | display: none;
134 | }
135 |
136 | .menu-items {
137 | display: flex;
138 | align-items: center;
139 | }
140 |
141 | .menu-item {
142 | border: none;
143 | padding: 0;
144 | margin-right: 1rem;
145 | }
146 |
147 | .menu-item--entrar {
148 | border-radius: 2rem;
149 | padding: 1rem 1.5rem;
150 | }
151 | }
152 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Getting Started with Create React App
2 |
3 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4 |
5 | ## Available Scripts
6 |
7 | In the project directory, you can run:
8 |
9 | ### `yarn start`
10 |
11 | Runs the app in the development mode.\
12 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
13 |
14 | The page will reload if you make edits.\
15 | You will also see any lint errors in the console.
16 |
17 | ### `yarn test`
18 |
19 | Launches the test runner in the interactive watch mode.\
20 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
21 |
22 | ### `yarn build`
23 |
24 | Builds the app for production to the `build` folder.\
25 | It correctly bundles React in production mode and optimizes the build for the best performance.
26 |
27 | The build is minified and the filenames include the hashes.\
28 | Your app is ready to be deployed!
29 |
30 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
31 |
32 | ### `yarn eject`
33 |
34 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!**
35 |
36 | If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
37 |
38 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
39 |
40 | You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
41 |
42 | ## Learn More
43 |
44 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
45 |
46 | To learn React, check out the [React documentation](https://reactjs.org/).
47 |
48 | ### Code Splitting
49 |
50 | This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
51 |
52 | ### Analyzing the Bundle Size
53 |
54 | This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
55 |
56 | ### Making a Progressive Web App
57 |
58 | This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
59 |
60 | ### Advanced Configuration
61 |
62 | This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
63 |
64 | ### Deployment
65 |
66 | This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
67 |
68 | ### `yarn build` fails to minify
69 |
70 | This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
71 |
--------------------------------------------------------------------------------
/db.json:
--------------------------------------------------------------------------------
1 | {
2 | "categorias": [
3 | {
4 | "id": "bienestar",
5 | "nome": "bienestar",
6 | "subcategorias": ["higiene", "salud"]
7 | },
8 | {
9 | "id": "comportamiento",
10 | "nome": "comportamiento",
11 | "subcategorias": ["entrenamiento", "educacion"]
12 | }
13 | ],
14 | "posts": [
15 | {
16 | "id": 1,
17 | "title": "Baño en perros",
18 | "metadescription": "Utiliza las herramientas ideales para bañar a tu perro",
19 | "body": "La mayoría de los perros prefieren saltarse la hora del baño, pero el baño juega un papel importante en la salud del pelaje y la piel de su perro, ya que ayuda a mantenerla limpia y libre de suciedad y parásitos. Tener los productos adecuados puede ayudarlo a sentirse más cómodo.",
20 | "categoria": "bienestar",
21 | "subcategoria": "higiene"
22 | },
23 | {
24 | "id": 2,
25 | "title": "Tu cachorro merece un tapete higiénico",
26 | "metadescription": "El baño que tu cachorro merece",
27 | "body": "Los tapetes higiénicos son una innovación en el mercado de las mascotas, perfectas para que tu perro haga sus necesidades con comodidad y sin ensuciar la casa. Son productos desechables o lavables que garantizan la comodidad de tu mascota.",
28 | "categoria": "bienestar",
29 | "subcategoria": "higiene"
30 | },
31 | {
32 | "id": 3,
33 | "title": "¿Época de pulgas?",
34 | "metadescription": "Es necesario evitar que tus mascotas contraigan estos parásitos",
35 | "body": "No es la mordedura, sino la reacción alérgica a ella lo que hace que tu perro sienta comezón. Algunas mascotas son hipersensibles a las pulgas y pueden tener una reacción grave con solo un mordisco. Sin embargo, todas las mascotas experimentarán molestias por las picaduras de pulgas. Entonces, tan pronto como veas rasguños repetidos, sospeche de las pulgas.",
36 | "categoria": "bienestar",
37 | "subcategoria": "salud"
38 | },
39 | {
40 | "id": 4,
41 | "title": "¿Tu mascota está estresada?",
42 | "metadescription": "El cambio de rutina puede ser el mayor factor.",
43 | "body": "Talvez eres de las personas que le dan atención adicional, pero cuando tienes que ir a la oficina o a realizar alguna actividad lo dejas en tu casa, causandole esa falta de atención que le brindas constantemente, lo ideal es mimarlos en la medida cierta. Debido a la pandemia hemos estado más presentes en nuestro hogar lo cuál puede acostumbrar a tu mascota a estar más tiempo contigo.",
44 | "categoria": "comportamiento",
45 | "subcategoria": "educacion"
46 | },
47 | {
48 | "id": 5,
49 | "title": "¿Cómo entrenar a tu perro para que no tenga miedo?",
50 | "metadescription": "La socialización es un grande factor en este aprendizaje.",
51 | "body": "Solo se puede enseñar a un perro a dejar de tener miedo aumentando su confianza en sí mismo. Esto significa cambiar la forma en que reacciona su mente en determinadas situaciones y convertir las asociaciones negativas en positivas. Hacer esto requiere mucha paciencia y una serie de exposiciones controladas al evento u objeto temido, pero lo suficientemente lejos como para que el perro no se sienta ansioso.",
52 | "categoria": "comportamiento",
53 | "subcategoria": "educacion"
54 | },
55 | {
56 | "id": 6,
57 | "title": "¿Por qué los gatos ronroñean?",
58 | "metadescription": "El ronroneo es una señal de aviso.",
59 | "body": "Una cosa que los científicos saben con certeza es que la parte del cerebro del gato que controla las vocalizaciones está muy conectada con la parte del cerebro que controla las emociones del gato. Entonces, lo que el gato está “diciendo” es absolutamente un reflejo de como se siente.",
60 | "categoria": "comportamiento",
61 | "subcategoria": "entrenamiento"
62 | },
63 | {
64 | "id": 7,
65 | "title": "¿Cómo entrenar a tu gato?",
66 | "metadescription": "Si, tu puedes entrenar a tu gato y es mucho más fácil de lo que pensabas.",
67 | "body": "Puedes utilizar herramientas de entrenamiento para una amplia variedad de animales, un 'clicker' solo costará unos pocos dólares y te ayudará a dar un refuerzo positivo cuando aprendas a entrenar a un gato. (También puedes usar un bolígrafo normal con un botón de click; lo importante es tener un ruido distintivo). La mayoría de los entrenamientos para gatos implican darle a tu gato una golosina que le guste después de un click para marcar el comportamiento deseado.",
68 | "categoria": "comportamiento",
69 | "subcategoria": "entrenamiento"
70 | }
71 | ]
72 | }
73 |
--------------------------------------------------------------------------------
/.eslintcache:
--------------------------------------------------------------------------------
1 | [{"/Users/harlandlohora/Documents/Alura/1925-React-Router/petshop/src/App.jsx":"1","/Users/harlandlohora/Documents/Alura/Copia de 1925-React-Router/petshop/src/App.jsx":"2","/Users/harlandlohora/Documents/Alura/Copia de 1925-React-Router/petshop/src/pages/Page404.jsx":"3","/Users/harlandlohora/Documents/Alura/Copia de 1925-React-Router/petshop/src/components/Header.jsx":"4","/Users/harlandlohora/Documents/Alura/Copia de 1925-React-Router/petshop/src/components/ListPosts.jsx":"5","/Users/harlandlohora/Documents/Alura/Copia de 1925-React-Router/petshop/src/pages/Post.jsx":"6","/Users/harlandlohora/Documents/Alura/Copia de 1925-React-Router/petshop/src/api/api.js":"7","/Users/harlandlohora/Documents/Alura/Copia de 1925-React-Router/petshop/src/components/ListCategories.jsx":"8","/Users/harlandlohora/Documents/Alura/Copia de 1925-React-Router/petshop/src/pages/Categorie.jsx":"9","/Users/harlandlohora/Documents/Alura/Copia de 1925-React-Router/petshop/src/pages/SubCategory.jsx":"10","/Users/harlandlohora/Documents/Alura/Copia de 1925-React-Router/petshop/src/pages/Home.jsx":"11","/Users/harlandlohora/Documents/Alura/react-router-petshop/src/App.jsx":"12","/Users/harlandlohora/Documents/Alura/react-router-petshop/src/pages/Home.jsx":"13","/Users/harlandlohora/Documents/Alura/react-router-petshop/src/pages/Sobre.jsx":"14"},{"size":129,"mtime":1627787604778,"results":"15","hashOfConfig":"16"},{"size":863,"mtime":1627847855133,"results":"17","hashOfConfig":"18"},{"size":368,"mtime":1627834497352,"results":"19","hashOfConfig":"18"},{"size":1078,"mtime":1627836075830,"results":"20","hashOfConfig":"18"},{"size":854,"mtime":1627842738779,"results":"21","hashOfConfig":"18"},{"size":682,"mtime":1627838730158,"results":"22","hashOfConfig":"18"},{"size":219,"mtime":1627838646698,"results":"23","hashOfConfig":"18"},{"size":717,"mtime":1627839447708,"results":"24","hashOfConfig":"18"},{"size":1645,"mtime":1627850315212,"results":"25","hashOfConfig":"18"},{"size":295,"mtime":1627847887645,"results":"26","hashOfConfig":"18"},{"size":374,"mtime":1628180085410,"results":"27","hashOfConfig":"18"},{"size":436,"mtime":1628189914285,"results":"28","hashOfConfig":"29"},{"size":728,"mtime":1628185539380,"results":"30","hashOfConfig":"29"},{"size":498,"mtime":1628185595907,"results":"31","hashOfConfig":"29"},{"filePath":"32","messages":"33","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"189fk1x",{"filePath":"34","messages":"35","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":"36"},"1sx9070",{"filePath":"37","messages":"38","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"39","messages":"40","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"41","messages":"42","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"43","messages":"44","errorCount":0,"warningCount":1,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},{"filePath":"45","messages":"46","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"47","messages":"48","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"49","messages":"50","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"51","messages":"52","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"53","messages":"54","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"55","messages":"56","errorCount":0,"warningCount":2,"fixableErrorCount":0,"fixableWarningCount":0,"source":null},"kobwdr",{"filePath":"57","messages":"58","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},{"filePath":"59","messages":"60","errorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"/Users/harlandlohora/Documents/Alura/1925-React-Router/petshop/src/App.jsx",[],"/Users/harlandlohora/Documents/Alura/Copia de 1925-React-Router/petshop/src/App.jsx",["61"],"import React from 'react'\nimport './assets/css/base/base.css'\nimport {\n BrowserRouter as Router,\n Switch,\n Route,\n Link\n} from \"react-router-dom\";\nimport Home from \"./pages/Home\"\nimport About from \"./pages/About\"\nimport Page404 from \"./pages/Page404\";\nimport Header from \"./components/Header\";\nimport Post from \"./pages/Post\";\nimport Categorie from \"./pages/Categorie\";\n\nfunction App() {\n \n return (\n <>\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n >\n )\n}\n\nexport default App\n","/Users/harlandlohora/Documents/Alura/Copia de 1925-React-Router/petshop/src/pages/Page404.jsx",["62"],"/Users/harlandlohora/Documents/Alura/Copia de 1925-React-Router/petshop/src/components/Header.jsx",[],"/Users/harlandlohora/Documents/Alura/Copia de 1925-React-Router/petshop/src/components/ListPosts.jsx",[],"/Users/harlandlohora/Documents/Alura/Copia de 1925-React-Router/petshop/src/pages/Post.jsx",["63"],"/Users/harlandlohora/Documents/Alura/Copia de 1925-React-Router/petshop/src/api/api.js",[],"/Users/harlandlohora/Documents/Alura/Copia de 1925-React-Router/petshop/src/components/ListCategories.jsx",[],"/Users/harlandlohora/Documents/Alura/Copia de 1925-React-Router/petshop/src/pages/Categorie.jsx",[],"/Users/harlandlohora/Documents/Alura/Copia de 1925-React-Router/petshop/src/pages/SubCategory.jsx",[],"/Users/harlandlohora/Documents/Alura/Copia de 1925-React-Router/petshop/src/pages/Home.jsx",[],"/Users/harlandlohora/Documents/Alura/react-router-petshop/src/App.jsx",["64","65"],"/Users/harlandlohora/Documents/Alura/react-router-petshop/src/pages/Home.jsx",[],"/Users/harlandlohora/Documents/Alura/react-router-petshop/src/pages/Sobre.jsx",[],{"ruleId":"66","severity":1,"message":"67","line":7,"column":3,"nodeType":"68","messageId":"69","endLine":7,"endColumn":7},{"ruleId":"70","severity":1,"message":"71","line":7,"column":7,"nodeType":"72","endLine":7,"endColumn":59},{"ruleId":"73","severity":1,"message":"74","line":15,"column":6,"nodeType":"75","endLine":15,"endColumn":10,"suggestions":"76"},{"ruleId":"66","severity":1,"message":"77","line":8,"column":3,"nodeType":"68","messageId":"69","endLine":8,"endColumn":9},{"ruleId":"66","severity":1,"message":"67","line":10,"column":3,"nodeType":"68","messageId":"69","endLine":10,"endColumn":7},"no-unused-vars","'Link' is defined but never used.","Identifier","unusedVar","jsx-a11y/img-redundant-alt","Redundant alt attribute. Screen-readers already announce `img` tags as an image. You don’t need to use the words `image`, `photo,` or `picture` (or any specified custom words) in the alt prop.","JSXOpeningElement","react-hooks/exhaustive-deps","React Hook useEffect has a missing dependency: 'history'. Either include it or remove the dependency array.","ArrayExpression",["78"],"'Switch' is defined but never used.",{"desc":"79","fix":"80"},"Update the dependencies array to be: [history, id]",{"range":"81","text":"82"},[410,414],"[history, id]"]
--------------------------------------------------------------------------------
/src/assets/img/doguitoadm.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------