Skip to content
This repository was archived by the owner on Dec 9, 2021. It is now read-only.

Commit 9741050

Browse files
author
Robert S
committed
prettier
1 parent a86b407 commit 9741050

File tree

2 files changed

+9
-13
lines changed

2 files changed

+9
-13
lines changed

README.md

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,14 @@ View the running [website](https://codebelt.github.io/react-redux-architecture/)
44

55
Check out the source code in different formats:
66

7-
* [React/Redux (TypeScript — Classes)](https://github.com/codeBelt/react-redux-architecture/tree/TypeScript)
8-
* [React/Redux (JavaScript — Classes)](https://github.com/codeBelt/react-redux-architecture/tree/JavaScript)
9-
* [React Hooks/Redux (TypeScript — Functions)](https://github.com/codeBelt/react-redux-architecture/tree/ts/function)
10-
* [React Hooks/Redux (JavaScript — Functions)](https://github.com/codeBelt/react-redux-architecture/tree/js/function)
11-
* [React Hooks/Redux (TypeScript — Arrows)](https://github.com/codeBelt/react-redux-architecture/tree/ts/arrows)
12-
13-
Read the article explaining this code:
14-
[My Awesome React Redux Structure](https://medium.com/better-programming/my-awesome-react-redux-structure-6044e5007e22)
15-
7+
- [React/Redux (TypeScript — Classes)](https://github.com/codeBelt/react-redux-architecture/tree/TypeScript)
8+
- [React/Redux (JavaScript — Classes)](https://github.com/codeBelt/react-redux-architecture/tree/JavaScript)
9+
- [React Hooks/Redux (TypeScript — Functions)](https://github.com/codeBelt/react-redux-architecture/tree/ts/function)
10+
- [React Hooks/Redux (JavaScript — Functions)](https://github.com/codeBelt/react-redux-architecture/tree/js/function)
11+
- [React Hooks/Redux (TypeScript — Arrows)](https://github.com/codeBelt/react-redux-architecture/tree/ts/arrows)
12+
13+
Read the article explaining this code:
14+
[My Awesome React Redux Structure](https://medium.com/better-programming/my-awesome-react-redux-structure-6044e5007e22)
1615

1716
![alt text](./appScreenshot.png 'App Screenshot')
1817

src/selectors/episodes/EpisodesSelector.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,4 @@ export class EpisodesSelector {
2424
}
2525
}
2626

27-
export const selectEpisodes = createSelector(
28-
(state) => state.shows.episodes,
29-
EpisodesSelector.selectEpisodes
30-
);
27+
export const selectEpisodes = createSelector((state) => state.shows.episodes, EpisodesSelector.selectEpisodes);

0 commit comments

Comments
 (0)