2018-10-09 02:18:00 +03:00
|
|
|
import PinCode from './pinCode';
|
2018-11-01 19:01:19 +03:00
|
|
|
import RootComponent from './root';
|
2018-10-11 20:57:21 +03:00
|
|
|
import Splash from './splash';
|
2018-10-29 16:29:29 +03:00
|
|
|
import SteemConnect from './steem-connect/steemConnect';
|
2018-10-13 17:05:42 +03:00
|
|
|
import { Editor } from './editor';
|
2018-10-11 20:57:21 +03:00
|
|
|
import { Home } from './home';
|
|
|
|
import { Login } from './login';
|
|
|
|
import { Notification } from './notification';
|
2018-10-29 16:29:29 +03:00
|
|
|
import { Post } from './post';
|
2018-10-13 17:05:42 +03:00
|
|
|
import { Profile } from './profile';
|
2018-11-01 19:01:19 +03:00
|
|
|
import { Voters } from './voters';
|
2018-11-09 18:46:34 +03:00
|
|
|
import { Messages } from './messages';
|
2018-11-16 17:39:16 +03:00
|
|
|
import { Follows } from './follows';
|
2018-10-11 20:57:21 +03:00
|
|
|
|
2018-10-09 02:18:00 +03:00
|
|
|
// import Author from './authorProfile';
|
|
|
|
// import SideMenu from './sideMenuScreen';
|
2018-10-04 05:18:36 +03:00
|
|
|
// import Hot from './home/hot';
|
|
|
|
// import Feed from './home/feed';
|
|
|
|
// import { SinglePost } from './singlePost';
|
|
|
|
// import { Profile } from './profile';
|
|
|
|
// import Wallet from './wallet/wallet';
|
|
|
|
// import Editor from './editor/editor';
|
|
|
|
// import Discover from './discover/discover';
|
|
|
|
// import Settings from './settings/settings';
|
|
|
|
// import { Notification } from './notification';
|
2018-09-03 13:49:54 +03:00
|
|
|
|
2018-10-04 05:18:36 +03:00
|
|
|
export {
|
2018-10-13 17:05:42 +03:00
|
|
|
Editor,
|
2018-10-11 20:57:21 +03:00
|
|
|
Home,
|
2018-10-06 06:33:03 +03:00
|
|
|
Login,
|
2018-11-16 17:39:16 +03:00
|
|
|
Follows,
|
2018-10-13 17:05:42 +03:00
|
|
|
Notification,
|
2018-10-09 02:18:00 +03:00
|
|
|
PinCode,
|
2018-10-29 16:29:29 +03:00
|
|
|
Post,
|
2018-11-01 19:01:19 +03:00
|
|
|
Profile,
|
2018-10-28 00:44:25 +03:00
|
|
|
RootComponent,
|
2018-11-01 19:01:19 +03:00
|
|
|
Splash,
|
|
|
|
SteemConnect,
|
|
|
|
Voters,
|
2018-11-09 18:46:34 +03:00
|
|
|
Messages,
|
2018-10-09 02:18:00 +03:00
|
|
|
// Author,
|
|
|
|
// SideMenu,
|
2018-10-04 05:18:36 +03:00
|
|
|
// Hot,
|
|
|
|
// Feed,
|
|
|
|
// SinglePost,
|
|
|
|
// Profile,
|
|
|
|
// Login,
|
|
|
|
// Wallet,
|
|
|
|
// Editor,
|
|
|
|
// Discover,
|
|
|
|
// Notification,
|
|
|
|
};
|