Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: codylindley/mobx-react
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: mobxjs/mobx-fiddle-baseline
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 1 commit
  • 13 files changed
  • 1 contributor

Commits on Aug 31, 2017

  1. Copy the full SHA
    c418c49 View commit details
Showing with 421 additions and 2,682 deletions.
  1. +0 −10 .env
  2. +3 −2,152 README.md
  3. +1 −0 package.json
  4. 0 src/TodoListView.css
  5. +0 −35 src/TodoListView.js
  6. +15 −0 src/components/Todo.jsx
  7. +47 −0 src/components/TodoList.jsx
  8. +0 −5 src/index.css
  9. +21 −32 src/index.js
  10. +17 −0 src/models/TodoListModel.js
  11. +11 −0 src/models/TodoModel.js
  12. +0 −108 src/registerServiceWorker.js
  13. +306 −340 yarn.lock
10 changes: 0 additions & 10 deletions .env
Original file line number Diff line number Diff line change
@@ -1,13 +1,3 @@
REACT_APP_DECORATORS = true;
REACT_APP_BABEL_STAGE_0 = true;

REACT_APP_SASS = false;
REACT_APP_LESS = false;
REACT_APP_STYLUS = false;

REACT_APP_CSS_MODULES = true;
REACT_APP_SASS_MODULES = false;
REACT_APP_STYLUS_MODULES = false;
REACT_APP_LESS_MODULES = false;

REACT_APP_WEBPACK_DASHBOARD = true;
Loading