mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-21 12:21:31 +03:00
49 lines
1.1 KiB
JavaScript
Executable File
49 lines
1.1 KiB
JavaScript
Executable File
import PinCode from './pinCode';
|
|
import RootComponent from './root';
|
|
import Splash from './splash';
|
|
import SteemConnect from './steem-connect/steemConnect';
|
|
import { Editor } from './editor';
|
|
import { Home } from './home';
|
|
import { Login } from './login';
|
|
import { Notification } from './notification';
|
|
import { Post } from './post';
|
|
import { Profile } from './profile';
|
|
import { Voters } from './voters';
|
|
|
|
// import Author from './authorProfile';
|
|
// import SideMenu from './sideMenuScreen';
|
|
// 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';
|
|
|
|
export {
|
|
Editor,
|
|
Home,
|
|
Login,
|
|
Notification,
|
|
PinCode,
|
|
Post,
|
|
Profile,
|
|
RootComponent,
|
|
Splash,
|
|
SteemConnect,
|
|
Voters,
|
|
// Author,
|
|
// SideMenu,
|
|
// Hot,
|
|
// Feed,
|
|
// SinglePost,
|
|
// Profile,
|
|
// Login,
|
|
// Wallet,
|
|
// Editor,
|
|
// Discover,
|
|
// Notification,
|
|
};
|