Skip to content

Commit

Permalink
ft: add alert component #42
Browse files Browse the repository at this point in the history
this will be used to display alerts and warning

feature: #42
  • Loading branch information
musilimu committed May 9, 2023
1 parent bc2927d commit b0c3954
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions src/components/index.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
import { Alert } from './ui/Alert';
import Footer from './shared/footer/Footer';
import { Navbar } from './shared/navbar/Navbar';
import { Container } from './Container';
import { ProductCard } from './products/ProductCard';
import { Counter } from './inputs/Counter';
import { Sidebar } from './sidebar/Sidebar';
import { Modal } from './shared/modals/Modal';
import { Heading } from './Heading';
import { InputField } from './inputs/InputField';
import { SelectorField } from './inputs/SelectorField';
import { Loader } from './Loader';
import { RequireAuth } from './RequireAuth';
import Dashboard from './Dashboard/Dashboard';
import { HomeSlider } from './shared/HomeSlider';
import { Alert } from "./ui/Alert";
import Footer from "./shared/footer/Footer";
import { Navbar } from "./shared/navbar/Navbar";
import { Container } from "./Container";
import { ProductCard } from "./products/ProductCard";
import { Counter } from "./inputs/Counter";
import { Sidebar } from "./sidebar/Sidebar";
import { Modal } from "./shared/modals/Modal";
import { Heading } from "./Heading";
import { InputField } from "./inputs/InputField";
import { SelectorField } from "./inputs/SelectorField";
import { Loader } from "./Loader";
import { RequireAuth } from "./RequireAuth";
import Dashboard from "./Dashboard/Dashboard";
import { HomeSlider } from "./shared/HomeSlider";

export {
Footer,
Expand Down

0 comments on commit b0c3954

Please sign in to comment.