├── .babelrc ├── .eslintrc ├── .gitignore ├── README.md ├── package.json └── src ├── actions └── index.js ├── containers └── App.js ├── index.html ├── index.js ├── lovutils.js ├── reducers └── index.js └── standalone.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorsnotes/edit-with-lov/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorsnotes/edit-with-lov/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | lib/ 3 | node_modules/ 4 | standalone/ 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorsnotes/edit-with-lov/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorsnotes/edit-with-lov/HEAD/package.json -------------------------------------------------------------------------------- /src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorsnotes/edit-with-lov/HEAD/src/actions/index.js -------------------------------------------------------------------------------- /src/containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorsnotes/edit-with-lov/HEAD/src/containers/App.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorsnotes/edit-with-lov/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorsnotes/edit-with-lov/HEAD/src/index.js -------------------------------------------------------------------------------- /src/lovutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorsnotes/edit-with-lov/HEAD/src/lovutils.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorsnotes/edit-with-lov/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorsnotes/edit-with-lov/HEAD/src/standalone.js --------------------------------------------------------------------------------