21 lines
674 B
TypeScript
21 lines
674 B
TypeScript
import PageHeader from '../components/ui/PageHeader';
|
|
import TenantInsuranceContracts from '../components/TenantInsuranceContracts';
|
|
import FeatureGate from '../components/ui/FeatureGate';
|
|
import SettingsLayout from '../components/layout/SettingsLayout';
|
|
|
|
export default function InsurancePricingPage() {
|
|
return (
|
|
<SettingsLayout active="insurance">
|
|
<FeatureGate feature="insurance">
|
|
<div className="fade-in">
|
|
<PageHeader
|
|
title="مدیریت بیمه"
|
|
description="قراردادهای بیمه پایه و تکمیلی"
|
|
/>
|
|
<TenantInsuranceContracts />
|
|
</div>
|
|
</FeatureGate>
|
|
</SettingsLayout>
|
|
);
|
|
}
|