You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,7 @@ npm install react-most --save
26
26
then you can use `Most.default` and `Most.connect`
27
27
28
28
## What
29
-
`react-most` is a simple, 100 LOC Higher Order Component for React. Its only dependencies are [most](https://github.com/cujojs/most), [most-subject](https://github.com/mostjs-community/subject), [ramda](https://github.com/Ramda/ramda), [React](https://github.com/facebook/react), and (optionally, if you prefered) [RxJS](https://github.com/Reactive-Extensions/RxJS).
29
+
`react-most` is a simple, 100 LOC Higher Order Component for React. Its only dependencies are [most](https://github.com/cujojs/most), [most-subject](https://github.com/mostjs-community/subject), [React](https://github.com/facebook/react), and (optionally, if you prefered) [RxJS](https://github.com/Reactive-Extensions/RxJS).
30
30
31
31
Data flow in `react-most` is simple and unidirectional.
Copy file name to clipboardExpand all lines: lib/react-most.js
+15-10Lines changed: 15 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,6 @@ import React from 'react';
2
2
importinitHistoryfrom'./history';
3
3
import{from}from'most';
4
4
importmostEnginefrom'./engine/most';
5
-
importmergeAllfrom'ramda/src/mergeAll';
6
-
importpickfrom'ramda/src/pick';
7
-
importkeysfrom'ramda/src/keys';
8
5
// unfortunately React doesn't support symbol as context key yet, so let me just preteding using Symbol until react implement the Symbol version of Object.assign
0 commit comments