Skip to content

Commit 7763096

Browse files
authored
docs: remove unnecessary import (#1831)
1 parent b208c36 commit 7763096

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/tutorials/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export default configureStore({
143143
Now we can use the React Redux hooks to let React components interact with the Redux store. We can read data from the store with `useSelector`, and dispatch actions using `useDispatch`. Create a `src/features/counter/Counter.js` file with a `<Counter>` component inside, then import that component into `App.js` and render it inside of `<App>`.
144144

145145
```jsx title="features/counter/Counter.js"
146-
import React, { useState } from 'react'
146+
import React from 'react'
147147
import { useSelector, useDispatch } from 'react-redux'
148148
import { decrement, increment } from './counterSlice'
149149
import styles from './Counter.module.css'

0 commit comments

Comments
 (0)