ecency-mobile/src/components/index.js
2019-12-03 16:05:10 +02:00

194 lines
5.1 KiB
JavaScript

import { AvatarHeader } from './avatarHeader';
import { BasicHeader } from './basicHeader';
import { BoostIndicatorAnimation, PulseAnimation, SpinIndicator } from './animations';
import { BottomTabBar } from './bottomTabBar';
import { CheckBox } from './checkbox';
import { CircularButton, TextButton, SquareButton } from './buttons';
import { CollapsibleCard } from './collapsibleCard';
import { ContainerHeader } from './containerHeader';
import { DateTimePicker } from './dateTimePicker';
import { DropdownButton } from './dropdownButton';
import { FilterBar } from './filterBar';
import { FormatedCurrency } from './formatedElements';
import { FormInput } from './formInput';
import { Header } from './header';
import { Icon } from './icon';
import { IconButton } from './iconButton';
import { InformationArea } from './informationArea';
import { InformationBox } from './informationBox';
import { LoginHeader } from './loginHeader';
import { MainButton } from './mainButton';
import { MarkdownEditor } from './markdownEditor';
import { Modal } from './modal';
import { NotificationLine } from './notificationLine';
import { NumericKeyboard } from './numericKeyboard';
import { ParentPost } from './parentPost';
import { PercentBar } from './percentBar';
import { PinAnimatedInput } from './pinAnimatedInput';
import { PostCard } from './postCard';
import { PostDisplay } from './postView';
import { PostDropdown } from './postDropdown';
import { PostForm } from './postForm';
import { PostHeaderDescription, PostBody, Tags } from './postElements';
import { PostListItem } from './postListItem';
import { ProfileSummary } from './profileSummary';
import { SearchInput } from './searchInput';
import { SearchModal } from './searchModal';
import { SettingsItem } from './settingsItem';
import { SideMenu } from './sideMenu';
import { SummaryArea, TagArea, TitleArea } from './editorElements';
import { TabBar } from './tabBar';
import { TextInput } from './textInput';
import { ToastNotification } from './toastNotification';
import { ToggleSwitch } from './toggleSwitch';
import { TransferFormItem } from './transferFormItem';
import { Upvote } from './upvote';
import { UserAvatar } from './userAvatar';
import Logo from './logo/logo';
import PostButton from './postButton/postButtonView';
import ProfileEditForm from './profileEditForm/profileEditFormView';
import ScaleSlider from './scaleSlider/scaleSliderView';
import { ProductItemLine } from './productItemLine/productItemLineView';
import { HorizontalIconList } from './horizontalIconList/horizontalIconListView';
import { PopoverWrapper } from './popoverWrapper/popoverWrapperView';
// View
import { Comment } from './comment';
import { Comments } from './comments';
import { CommentsDisplay } from './commentsDisplay';
import { LeaderBoard } from './leaderboard';
import { Notification } from './notification';
import { WalletHeader } from './walletHeader';
import { Posts } from './posts';
import { Transaction } from './transaction';
import { VotersDisplay } from './votersDisplay';
import { Wallet } from './wallet';
import { WalletDetails } from './walletDetails';
import PostBoost from './postBoost/postBoostView';
import Profile from './profile/profileView';
import Promote from './promote/promoteView';
import { SpinGame } from './spinGame/spinGameView';
// Basic UI Elements
import {
BoostPlaceHolder,
Card,
Chip,
GrayWrapper,
LineBreak,
ListItemPlaceHolder,
ListPlaceHolder,
NoInternetConnection,
NoPost,
PostCardPlaceHolder,
PostPlaceHolder,
ProfileSummaryPlaceHolder,
StickyBar,
Tag,
TextWithIcon,
UserListItem,
WalletDetailsPlaceHolder,
WalletLineItem,
WalletUnclaimedPlaceHolder,
} from './basicUIElements';
export {
AvatarHeader,
BasicHeader,
BoostIndicatorAnimation,
BoostPlaceHolder,
BottomTabBar,
Card,
CheckBox,
Chip,
CircularButton,
CollapsibleCard,
Comment,
Comments,
CommentsDisplay,
ContainerHeader,
DateTimePicker,
DropdownButton,
FilterBar,
FormatedCurrency,
FormInput,
GrayWrapper,
Header,
Icon,
IconButton,
InformationArea,
InformationBox,
LeaderBoard,
LineBreak,
ListItemPlaceHolder,
ListPlaceHolder,
LoginHeader,
Logo,
MainButton,
MarkdownEditor,
Modal,
NoInternetConnection,
NoPost,
Notification,
NotificationLine,
NumericKeyboard,
ParentPost,
PercentBar,
PinAnimatedInput,
WalletHeader,
PostBody,
PostBoost,
PostButton,
PostCard,
PostCardPlaceHolder,
PostDisplay,
PostDropdown,
PostForm,
PostHeaderDescription,
PostListItem,
PostPlaceHolder,
Posts,
ProductItemLine,
Profile,
ProfileEditForm,
ProfileSummary,
ProfileSummaryPlaceHolder,
Promote,
PulseAnimation,
ScaleSlider,
SearchInput,
SearchModal,
SettingsItem,
SideMenu,
SpinGame,
SpinIndicator,
SquareButton,
StickyBar,
SummaryArea,
TabBar,
Tag,
TagArea,
Tags,
TextButton,
TextInput,
TextWithIcon,
TitleArea,
ToastNotification,
ToggleSwitch,
Transaction,
TransferFormItem,
Upvote,
UserAvatar,
UserListItem,
VotersDisplay,
Wallet,
WalletDetails,
WalletDetailsPlaceHolder,
WalletLineItem,
WalletUnclaimedPlaceHolder,
HorizontalIconList,
PopoverWrapper,
};