import React from "react";
import { Routes, Route } from "react-router-dom";
import SignYourselfPdf from "./Component/SignYourselfPdf";
import RecipientSignPdf from "./Component/recipientSignPdf";
import PlaceHolderSign from "./Component/placeHolderSign";
import ManageSign from "./Component/ManageSign";
import Login from "./Component/login";
import DraftDocument from "./Component/DraftDocument";
import PdfRequestFiles from "./Component/PdfRequestFiles";
import LegaDrive from "./Component/LegaDrive/LegaDrive";
import PageNotFound from "./Component/PageNotFound";
// `AppRoutes` is used to define route path of app and
// it expose to host app, check moduleFederation.config.js for more
function AppRoutes() {
return (
{/* TODO: Check with images and other assets */}
Microapp Home page route
} />
{/* signyouself route with rowlevel data */}
} />
{/* signyouself route with no rowlevel data using docId from url */}
} />
{/* recipient signature route with no rowlevel data using docId from url */}
}
/>
{/* recipient placeholder set route with rowlevel data */}
} />{" "}
{/* recipient placeholder set route with no rowlevel data using docId from url*/}
} />
{/*Add default signature of user route */}
} />
{/* login page route */}
}
/>
{/* draft document route to handle and navigate route page accordiing to document status */}
} />
{/* for user signature (need your sign route) with row level data */}
} />
{/* for user signature (need your sign route) with no row level data */}
} />
{/* lega drive route */}
} />
{/* Page Not Found */}
} />
);
}
export default AppRoutes;