Skip to content

Commit ea9e0a1

Browse files
committed
Merge pull request reduxjs#778 from jabbrass/patch-1
Fix typo (docs/recipes/WritingTests)
2 parents 153ebe6 + 82280c0 commit ea9e0a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/recipes/WritingTests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ export default connect(mapDispatchToProps)(App);
297297
Since the default export is still the decorated component, the import statement pictured above will work as before so you won’t have to change your application code. However, you can now import the undecorated `App` components in your test file like this:
298298

299299
```js
300-
// Note the curly brances: grab the named export instead of default export
300+
// Note the curly braces: grab the named export instead of default export
301301
import { App } from './App';
302302
```
303303

0 commit comments

Comments
 (0)