[Templating] Fixes an error in the react redux template when opened in VS (#9292)
This commit is contained in:
parent
022e79cf17
commit
8897b56597
|
|
@ -11,7 +11,7 @@ it('renders without crashing', () => {
|
|||
dispatch: () => {},
|
||||
getState: () => ({ ...state })
|
||||
});
|
||||
const store = storeFake({});
|
||||
const store = storeFake({}) as any;
|
||||
|
||||
ReactDOM.render(
|
||||
<Provider store={store}>
|
||||
|
|
|
|||
Loading…
Reference in New Issue