hotelier-lib
Version:
A skeleton to create your own React component library using Rollup, TypeScript, Sass and Storybook
29 lines (28 loc) • 1.84 kB
TypeScript
import "./styles.css";
import { Button } from './elements/Buttons/buttons';
import AuthenticationPage from "./components/Authentication/login";
import { ToastAction } from "./elements/Toast/toast";
import { useToast } from "./elements/Toast/use-toast";
import { Toaster } from "./elements/Toast/toaster";
import UserSignupPage from "./components/Authentication/signup";
import VerificationPage from "./components/Authentication/verify-account";
import ResetPasswordPage from "./components/Authentication/reset-password";
import ForgotPasswordPage from "./components/Authentication/forgotPasswordPage";
import { Icons } from "./elements/Icons/icons";
import { Table } from "./components/Table-columns";
import { Form } from "./components/Forms";
import Drawer from "./components/Drawer/drawer";
import DataTable from "./components/Data-table/data-table";
import Confirmation from "./components/Confirmation/alert";
import Tab from "./components/tab/tab";
import Calander from "./components/calander/calander";
import { RegistrationForm } from "./registrationForm";
import Dashboard from "./components/dashboard/dashboard";
import EditInvoice from "./components/Forms/invoiceEditable/invoiceEditableForm";
import Layout from "./components/Layout/layout";
import { IForm } from "./components/Forms";
import { ITable } from "./components/Table-columns";
import LineChart, { IFinancialChart } from "./components/Financials/financials";
import BarChart from "./components/BarChart/barChart";
export { IForm, ITable, IFinancialChart };
export { Button, BarChart, LineChart, EditInvoice, Tab, Table, Icons, Layout, AuthenticationPage, ToastAction, useToast, Toaster, UserSignupPage, VerificationPage, ResetPasswordPage, ForgotPasswordPage, Form, Drawer, DataTable, Confirmation, Calander, RegistrationForm, Dashboard };