rure engine

This commit is contained in:
hagiye
2026-05-30 11:19:40 +03:00
parent 22e701b96f
commit ccbc642075
10 changed files with 2257 additions and 235 deletions

View File

@@ -1,14 +1,10 @@
import { ContractTypePage, } from "@/components/ruleEngine/ContractType";
// src/pages/ruleEngine/RuleEngine.tsx
import ContractTypePage from "@/components/ruleEngine/ContractType";
export const RuleEnginePage = () => {
return <div>
<h3>
Rule Engine Page
</h3>
<div>
<ContractTypePage />
</div>
</div>;
return (
<div className="p-6">
<ContractTypePage />
</div>
);
};