File tree Expand file tree Collapse file tree 4 files changed +3
-10
lines changed Expand file tree Collapse file tree 4 files changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import connect from './connect/connect'
5
5
6
6
import { useActions } from './hooks/useActions'
7
7
import { useDispatch } from './hooks/useDispatch'
8
- import { useReduxContext } from './hooks/useReduxContext'
9
8
import { useSelector } from './hooks/useSelector'
10
9
import { useStore } from './hooks/useStore'
11
10
@@ -22,7 +21,6 @@ export {
22
21
batch ,
23
22
useActions ,
24
23
useDispatch ,
25
- useReduxContext ,
26
24
useSelector ,
27
25
useStore
28
26
}
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ import connect from './connect/connect'
5
5
6
6
import { useActions } from './hooks/useActions'
7
7
import { useDispatch } from './hooks/useDispatch'
8
- import { useReduxContext } from './hooks/useReduxContext'
9
8
import { useSelector } from './hooks/useSelector'
10
9
import { useStore } from './hooks/useStore'
11
10
@@ -22,7 +21,6 @@ export {
22
21
batch ,
23
22
useActions ,
24
23
useDispatch ,
25
- useReduxContext ,
26
24
useSelector ,
27
25
useStore
28
26
}
Original file line number Diff line number Diff line change 1
1
import React from 'react'
2
2
import * as rtl from 'react-testing-library'
3
- import { useReduxContext } from '../../src/index.js '
3
+ import { useReduxContext } from '../../src/hooks/useReduxContext '
4
4
5
5
describe ( 'React' , ( ) => {
6
6
describe ( 'hooks' , ( ) => {
Original file line number Diff line number Diff line change 3
3
import React from 'react'
4
4
import { createStore } from 'redux'
5
5
import * as rtl from 'react-testing-library'
6
- import {
7
- Provider as ProviderMock ,
8
- useSelector ,
9
- useReduxContext
10
- } from '../../src/index.js'
6
+ import { Provider as ProviderMock , useSelector } from '../../src/index.js'
7
+ import { useReduxContext } from '../../src/hooks/useReduxContext'
11
8
12
9
describe ( 'React' , ( ) => {
13
10
describe ( 'hooks' , ( ) => {
You can’t perform that action at this time.
0 commit comments