We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82cf1b9 commit c6c71b3Copy full SHA for c6c71b3
src/content/6/es/part6a.md
@@ -1000,13 +1000,9 @@ import { createNote } from './../reducers/noteReducer'
1000
Codigo para el componente <i>App</i>
1001
1002
```js
1003
-import React from 'react'
1004
-import {
1005
- createNote, toggleImportanceOf
1006
-} from './reducers/noteReducer'
+import { createNote, toggleImportanceOf } from './reducers/noteReducer' // highlight-line
1007
import { useSelector, useDispatch } from 'react-redux' // highlight-line
1008
1009
-
1010
const App = () => {
1011
const dispatch = useDispatch() // highlight-line
1012
const notes = useSelector(state => state) // highlight-line
0 commit comments