|
|
|
import "./App.scss";
|
|
|
|
|
|
|
|
import { Provider } from "react-redux";
|
|
|
|
import store from "./redux/store";
|
|
|
|
|
|
|
|
import ButtonDesign from "./components/buttonDesign/ButtonDesign";
|
|
|
|
import ProductDesign from "./components/productDesign/ProductDesign";
|
|
|
|
import ProductTags from "./components/productTags/ProductTags";
|
|
|
|
import CounterDesign from "./components/counterDesign/CounterDesign";
|
|
|
|
import BookDesign from "./components/bookDesign/BookDesign";
|
|
|
|
import BlogDesign1 from "./components/Blogs/design1/BlogDesign1";
|
|
|
|
import BlogDesign2 from "./components/Blogs/design2/BlogDesign2";
|
|
|
|
import BlogDesign3 from "./components/Blogs/design3/BlogDesign3";
|
|
|
|
import BlogDesign4 from "./components/Blogs/design4/BlogDesign4";
|
|
|
|
import BlogDesign5 from "./components/Blogs/design5/BlogDesign5";
|
|
|
|
import BlogDesign6 from "./components/Blogs/design6/BlogDesign6";
|
|
|
|
import HeaderDesign1 from "./components/Header/desgin1/HeaderDesign1";
|
|
|
|
import VodProductDesign from "./components/vodProductDesign/VodProductDesign";
|
|
|
|
import ContactInfoSection from "./components/contactInfoSection/ContactInfoSection";
|
|
|
|
import FooterDesign1 from "./components/footer/design1/FooterDesign1";
|
|
|
|
import Testttt from "./components/testtttt/Testttt";
|
|
|
|
import Design2D from "./components/Design2D/Design2D";
|
|
|
|
import Features from "./components/Features/index";
|
|
|
|
import Feedback from "./components/Feedback/index";
|
|
|
|
import Alert from "./components/Alert";
|
|
|
|
import Toast from "./components/Toast";
|
|
|
|
import ProductSuggestion from "./components/ProductSuggestion";
|
|
|
|
import ProductImage from "./components/ProductImage";
|
|
|
|
import VodProduct from "./components/VodProduct";
|
|
|
|
import VodProductNew from "./components/VodProductNew";
|
|
|
|
import ProductTab from "./components/ProductTab";
|
|
|
|
import ProductStatusCard from "./components/ProductStatusCard";
|
|
|
|
import AdvertisementDesign1 from "./components/Advertisement/design1";
|
|
|
|
import AdvertisementDesign2 from "./components/Advertisement/design2";
|
|
|
|
import AdvertisementDesign3 from "./components/Advertisement/design3";
|
|
|
|
import CourseChapter from "./components/CourseChapter";
|
|
|
|
import SidebarMenu from "./components/Sidebar/SidebarMenu";
|
|
|
|
import SidebarDesign2 from "./components/Sidebar/SidebarDesign2";
|
|
|
|
|
|
|
|
import Switch from "./components/Switch";
|
|
|
|
|
|
|
|
function App() {
|
|
|
|
return (
|
|
|
|
<Provider store={store}>
|
|
|
|
<div className="App">
|
|
|
|
{/* <ProductDesign /> */}
|
|
|
|
{/* <VodProductDesign /> */}
|
|
|
|
{/* <VodProduct /> */}
|
|
|
|
{/* <VodProductNew /> */}
|
|
|
|
{/* <BookDesign /> */}
|
|
|
|
{/* <ButtonDesign /> */}
|
|
|
|
{/* <ProductTags /> */}
|
|
|
|
{/* <CounterDesign /> */}
|
|
|
|
{/* <BlogDesign1 /> */}
|
|
|
|
{/* <BlogDesign2 /> */}
|
|
|
|
{/* <BlogDesign3 /> */}
|
|
|
|
{/* <BlogDesign4 /> */}
|
|
|
|
{/* <BlogDesign5 /> */}
|
|
|
|
{/* <BlogDesign6 /> */}
|
|
|
|
{/* <HeaderDesign1 /> */}
|
|
|
|
{/* <ContactInfoSection /> */}
|
|
|
|
{/* <FooterDesign1 /> */}
|
|
|
|
{/* <Testttt /> */}
|
|
|
|
{/* <Design2D /> */}
|
|
|
|
{/* <Features /> */}
|
|
|
|
{/* <Feedback /> */}
|
|
|
|
{/* <Alert /> */}
|
|
|
|
{/* <Toast /> */}
|
|
|
|
{/* <ProductSuggestion /> */}
|
|
|
|
{/* <ProductImage /> */}
|
|
|
|
{/* <ProductTab /> */}
|
|
|
|
{/* <ProductStatusCard /> */}
|
|
|
|
{/* <AdvertisementDesign1 /> */}
|
|
|
|
{/* <AdvertisementDesign2 /> */}
|
|
|
|
{/* <AdvertisementDesign3 /> */}
|
|
|
|
{/* <CourseChapter /> */}
|
|
|
|
{/* <SidebarMenu /> */}
|
|
|
|
<SidebarDesign2 />
|
|
|
|
</div>
|
|
|
|
</Provider>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default App;
|