Common components refactor #1

Merged
akinwale merged 42 commits from common-components-refactor into master 2018-04-05 04:57:30 +02:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit ca06c27d32 - Show all commits

View file

@ -1,6 +1,6 @@
{
"linters": {
"src/**/*.{js}": [
"src/**/*.js": [
"prettier --write",
"eslint --fix",
"git add"

View file

@ -1,8 +1,9 @@
// common
import Lbry from 'lbry';
import Lbryapi from 'lbryapi';
import Lbryuri from 'lbryuri';
export { Lbry, Lbryuri };
export { Lbry, Lbryapi, Lbryuri };
// actions
export { doOpenModal, doCloseModal, doShowSnackBar } from 'redux/actions/app';