mirror of
https://github.com/hazemKrimi/crimson-quirks-ui.git
synced 2026-05-01 18:20:28 +00:00
52 lines
1.3 KiB
TypeScript
52 lines
1.3 KiB
TypeScript
import Login from './Auth/Login';
|
|
import Signup from './Auth/Signup';
|
|
import AdditionalInfo from './Auth/AdditionalInfo';
|
|
import ForgotPassword from './Auth/ForgotPassword';
|
|
import RecoverAccount from './Auth/RecoverAccount';
|
|
import Project from './Project';
|
|
import Template from './Template';
|
|
import Feature from './Feature';
|
|
import Category from './Category';
|
|
import Prototype from './Prototype';
|
|
import Users from './Users';
|
|
import CreateUser from './CreateUser';
|
|
import Settings from './Settings';
|
|
import UserSettings from './UserSettings';
|
|
import AddCategory from './AddCategory';
|
|
import AddFeature from './AddFeature';
|
|
import AddTemplate from './AddTemplate';
|
|
import CategorySettings from './CategorySettings';
|
|
import FeatureSettings from './FeatureSettings';
|
|
import TemplateSettings from './TemplateSettings';
|
|
import AddProject from './AddProject';
|
|
import UpdateProject from './UpdateProject';
|
|
import Payments from './Payments';
|
|
import Support from './Support';
|
|
|
|
export {
|
|
Login,
|
|
Signup,
|
|
AdditionalInfo,
|
|
ForgotPassword,
|
|
RecoverAccount,
|
|
Project,
|
|
Template,
|
|
Feature,
|
|
Category,
|
|
Prototype,
|
|
Users,
|
|
CreateUser,
|
|
Settings,
|
|
UserSettings,
|
|
AddCategory,
|
|
AddFeature,
|
|
AddTemplate,
|
|
CategorySettings,
|
|
FeatureSettings,
|
|
TemplateSettings,
|
|
AddProject,
|
|
UpdateProject,
|
|
Payments,
|
|
Support,
|
|
};
|