You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
130 lines
5.2 KiB
130 lines
5.2 KiB
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 SimpleBarChart from "./components/Chart/SimpleBarChart"; |
|
import SpecifiedDomainRadarChart from "./components/Chart/SpecifiedDomainRadarChart"; |
|
import Design1 from "./components/ProductSalesAmount/Design1"; |
|
import Design2 from "./components/ProductSalesAmount/Design2"; |
|
import TableDesign1 from "./components/Table/Design1"; |
|
import ReactTable2 from "./components/ReactTable2"; |
|
import ReactTable3 from "./components/ReactTable3"; |
|
import ReactTable4 from "./components/ReactTable4"; |
|
import ReactTable5 from "./components/ReactTable5"; |
|
import Digikala from "./components/Digikala"; |
|
import Switch from "./components/Switch"; |
|
import BreadCrumb from "./components/BreadCrumb"; |
|
import SearchBox from "./components/SearchBox"; |
|
import Blogs from "./components/Blogs"; |
|
import FileManager from "./components/FileManager"; |
|
import Playlist from "./components/Playlist"; |
|
import Folderlists from "./components/Folderlist"; |
|
import CardHolder from "./components/CardHolder"; |
|
import UploadFile from "./components/UploadFile"; |
|
import BarChartApex from "./components/BarChartApex"; |
|
import SemiDonut from "./components/SemiDonut"; |
|
|
|
// import Digikala from "./components/Digikala/ImageSlider"; |
|
|
|
function App() { |
|
return ( |
|
<Provider store={store}> |
|
<div className="App"> |
|
{/* <ProductDesign /> */} |
|
{/* <VodProductDesign /> */} |
|
{/* <VodProduct /> */} |
|
{/* <VodProductNew /> */} |
|
{/* <BookDesign /> */} |
|
{/* <ButtonDesign /> */} |
|
{/* <ProductTags /> */} |
|
{/* <CounterDesign /> */} |
|
{/* <BlogDesign1 /> */} |
|
{/* <BlogDesign2 /> */} |
|
{/* <BlogDesign3 /> */} |
|
{/* <BlogDesign4 /> */} |
|
{/* <BlogDesign5 /> */} |
|
{/* <BlogDesign6 /> */} |
|
{/* <ContactInfoSection /> */} |
|
{/* <Testttt /> */} |
|
{/* <Design2D /> */} |
|
{/* <Features /> */} |
|
{/* <Feedback /> */} |
|
{/* <Alert /> */} |
|
{/* <Toast /> */} |
|
{/* <ProductSuggestion /> */} |
|
{/* <ProductImage /> */} |
|
{/* <ProductTab /> */} |
|
{/* <ProductStatusCard /> */} |
|
{/* <AdvertisementDesign1 /> */} |
|
{/* <AdvertisementDesign2 /> */} |
|
{/* <AdvertisementDesign3 /> */} |
|
{/* <CourseChapter /> */} |
|
{/* <SidebarMenu /> */} |
|
{/* <SimpleBarChart /> */} |
|
{/* <SpecifiedDomainRadarChart /> */} |
|
{/* <Design1 /> */} |
|
{/* <Design2 /> */} |
|
{/* <TableDesign1 /> */} |
|
{/* <ReactTable2 /> */} |
|
{/* <ReactTable3 /> */} |
|
<ReactTable4 /> |
|
<ReactTable5 /> |
|
{/* <Digikala /> */} |
|
{/* <HeaderDesign1 /> |
|
<div className="flex"> |
|
<SidebarDesign2 className="w-1/5" /> |
|
<span className="w-4/5 "> |
|
<ReactTable4 /> |
|
<FooterDesign1 /> |
|
</span> |
|
</div> */} |
|
{/* <BreadCrumb /> */} |
|
{/* <SearchBox /> */} |
|
{/* <FileManager /> */} |
|
{/* <Playlist /> */} |
|
{/* <Folderlists /> */} |
|
{/* <Blogs /> */} |
|
{/* <CardHolder /> */} |
|
{/* <UploadFile /> */} |
|
{/* <BarChartApex /> */} |
|
{/* <SemiDonut /> */} |
|
</div> |
|
</Provider> |
|
); |
|
} |
|
|
|
export default App;
|
|
|