Write Employee Module Code
Introduction
Steps
/micro-ui-internals/packages/modules/sample/src/components/SampleCard.jsconst SampleCard = () => {
const { t } = useTranslation();
const propsForModuleCard = {
Icon: <PropertyHouse />,
moduleName: t("Sample"),
kpis: [
],
links: [
{
label: t("Individual Search"),
link: `/${window?.contextPath}/employee/sample/search-individual`,
},
{
label: t("Individual Create"),
link: `/${window?.contextPath}/employee/sample/create-individual`,
},
return <EmployeeModuleCard {...propsForModuleCard} />;
};
export default SampleCard;
Last updated
Was this helpful?