-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #606 from charpeni/fix-index
Fix index.js
- Loading branch information
Showing
1 changed file
with
19 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,23 @@ | ||
import Router from './src/Router'; | ||
import Scene from './src/Scene'; | ||
import Actions from './src/Actions'; | ||
import getInitialState from './src/State'; | ||
import Reducer from './src/Reducer'; | ||
import TabBar from './src/TabBar'; | ||
import Modal from './src/Modal'; | ||
import DefaultRenderer from './src/DefaultRenderer'; | ||
import Switch from './src/Switch'; | ||
import Modal from './src/Modal'; | ||
import NavBar from './src/NavBar'; | ||
import Reducer from './src/Reducer'; | ||
import Router from './src/Router'; | ||
import Scene from './src/Scene'; | ||
import Switch from './src/Switch'; | ||
import TabBar from './src/TabBar'; | ||
import getInitialState from './src/State'; | ||
|
||
module.exports = { DefaultRenderer, NavBar, Switch, Modal, Router, TabBar, | ||
Scene, Actions, Reducer, getInitialState }; | ||
export { | ||
Actions, | ||
DefaultRenderer, | ||
Modal, | ||
NavBar, | ||
Reducer, | ||
Router, | ||
Scene, | ||
Switch, | ||
TabBar, | ||
getInitialState, | ||
}; |