Added vehicle detail form.
This commit is contained in:
@@ -28,7 +28,7 @@ export default connect(
|
||||
return () => {
|
||||
//
|
||||
};
|
||||
}, [data]);
|
||||
}, [data, setBodyshop]);
|
||||
|
||||
return <ManagePage match={match} />;
|
||||
});
|
||||
|
||||
@@ -1,19 +1,15 @@
|
||||
import { BackTop, Layout, notification } from "antd";
|
||||
import { BackTop, Layout } from "antd";
|
||||
import React, { lazy, Suspense, useEffect } from "react";
|
||||
|
||||
import { useTranslation } from "react-i18next";
|
||||
//This page will handle all routing for the entire application.
|
||||
import { connect } from "react-redux";
|
||||
import { Route } from "react-router";
|
||||
import ErrorBoundary from "../../components/error-boundary/error-boundary.component";
|
||||
import FooterComponent from "../../components/footer/footer.component";
|
||||
//Component Imports
|
||||
import HeaderContainer from "../../components/header/header.container";
|
||||
import LoadingSpinner from "../../components/loading-spinner/loading-spinner.component";
|
||||
//const WhiteBoardPage = lazy(() => import("../white-board/white-board.page"));
|
||||
import { setBodyshop } from "../../redux/user/user.actions";
|
||||
import "./manage.page.styles.scss";
|
||||
|
||||
|
||||
const ManageRootPage = lazy(() =>
|
||||
import("../manage-root/manage-root.page.container")
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user