mirror of
https://github.com/kingomarnajjar/flex-template-web.git
synced 2026-07-26 06:47:17 +10:00
39 lines
1.4 KiB
JavaScript
39 lines
1.4 KiB
JavaScript
import AuthenticationPage from './AuthenticationPage/AuthenticationPage';
|
|
import CheckoutPage from './CheckoutPage/CheckoutPage';
|
|
import ContactDetailsPage from './ContactDetailsPage/ContactDetailsPage';
|
|
import EditProfilePage from './EditProfilePage/EditProfilePage';
|
|
import InboxPage from './InboxPage/InboxPage';
|
|
import LandingPage from './LandingPage/LandingPage';
|
|
import ListingPage from './ListingPage/ListingPage';
|
|
import ManageListingsPage from './ManageListingsPage/ManageListingsPage';
|
|
import OrderPage from './OrderPage/OrderPage';
|
|
import PasswordChangePage from './PasswordChangePage/PasswordChangePage';
|
|
import PasswordForgottenPage from './PasswordForgottenPage/PasswordForgottenPage';
|
|
import PayoutPreferencesPage from './PayoutPreferencesPage/PayoutPreferencesPage';
|
|
import ProfilePage from './ProfilePage/ProfilePage';
|
|
import SalesConversationPage from './SalesConversationPage/SalesConversationPage';
|
|
import SearchPage from './SearchPage/SearchPage';
|
|
import SecurityPage from './SecurityPage/SecurityPage';
|
|
import NotFoundPage from './NotFoundPage/NotFoundPage';
|
|
import Topbar from './Topbar/Topbar';
|
|
|
|
export {
|
|
AuthenticationPage,
|
|
CheckoutPage,
|
|
ContactDetailsPage,
|
|
EditProfilePage,
|
|
InboxPage,
|
|
LandingPage,
|
|
ListingPage,
|
|
ManageListingsPage,
|
|
NotFoundPage,
|
|
OrderPage,
|
|
PasswordChangePage,
|
|
PasswordForgottenPage,
|
|
PayoutPreferencesPage,
|
|
ProfilePage,
|
|
SalesConversationPage,
|
|
SearchPage,
|
|
SecurityPage,
|
|
Topbar,
|
|
};
|