feat: add debug pdf page

This commit is contained in:
prafull-opensignlabs
2024-02-01 16:31:34 +05:30
parent 7a5cdefcfa
commit 8bbbf9b3d8
7 changed files with 635 additions and 302 deletions
+2 -3
View File
@@ -10,7 +10,7 @@ import LegaDrive from "./Component/LegaDrive/LegaDrive";
import PageNotFound from "./Component/PageNotFound";
import TemplatePlaceHolder from "./Component/TemplatePlaceholder";
import Parse from "parse";
import GuestLogin from "./premitives/GuestLogin";
import DebugUi from "./Component/DebugUi";
Parse.serverURL = localStorage.getItem("baseUrl");
Parse.initialize(localStorage.getItem("parseAppId"));
// `AppRoutes` is used to define route path of app and
@@ -51,8 +51,7 @@ function AppRoutes() {
<Route path="/legadrive" element={<LegaDrive />} />
{/* Page Not Found */}
<Route path="/template/:templateId" element={<TemplatePlaceHolder />} />
<Route path="/guestlogin" element={<GuestLogin />} />
<Route path="/debugpdf" element={<DebugUi />} />
<Route path="*" element={<PageNotFound />} />
</Routes>
</div>