This repository was archived by the owner on Mar 28, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed
test-e2e/browser/react-app/src/modules Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ import { about } from "mocks-server-admin-api-client";
3
3
4
4
import AboutView from "./AboutView" ;
5
5
6
- const Controller = connect ( ( ) => ( {
6
+ const AboutController = connect ( ( ) => ( {
7
7
about : about . read . getters . value
8
8
} ) ) ( AboutView ) ;
9
9
10
- export default Controller ;
10
+ export default AboutController ;
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ import { behaviorsCollection } from "mocks-server-admin-api-client";
3
3
4
4
import BehaviorsView from "./BehaviorsView" ;
5
5
6
- const Controller = connect ( ( ) => ( {
6
+ const BehaviorsController = connect ( ( ) => ( {
7
7
behaviors : behaviorsCollection . read . getters . value
8
8
} ) ) ( BehaviorsView ) ;
9
9
10
- export default Controller ;
10
+ export default BehaviorsController ;
Original file line number Diff line number Diff line change @@ -44,9 +44,9 @@ const currentFixture = new Selector(
44
44
}
45
45
) ;
46
46
47
- const Controller = connect ( ( ) => ( {
47
+ const CurrentBehaviorController = connect ( ( ) => ( {
48
48
behavior : currentBehavior . read . getters . value ,
49
49
fixture : currentFixture . read . getters . value
50
50
} ) ) ( CurrentBehaviorView ) ;
51
51
52
- export default Controller ;
52
+ export default CurrentBehaviorController ;
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ import { fixturesCollection } from "mocks-server-admin-api-client";
3
3
4
4
import FixturesView from "./FixturesView" ;
5
5
6
- const Controller = connect ( ( ) => ( {
6
+ const FixturesController = connect ( ( ) => ( {
7
7
fixtures : fixturesCollection . read . getters . value
8
8
} ) ) ( FixturesView ) ;
9
9
10
- export default Controller ;
10
+ export default FixturesController ;
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ import { settings } from "mocks-server-admin-api-client";
3
3
4
4
import SettingsView from "./SettingsView" ;
5
5
6
- const Controller = connect ( ( ) => ( {
6
+ const SettingsController = connect ( ( ) => ( {
7
7
settings : settings . read . getters . value
8
8
} ) ) ( SettingsView ) ;
9
9
10
- export default Controller ;
10
+ export default SettingsController ;
You can’t perform that action at this time.
0 commit comments