diff --git a/Components/Calculation/Form/Insurance/InsuranceTable/index.jsx b/Components/Calculation/Form/Insurance/InsuranceTable/index.jsx index 3289be4..ff29374 100644 --- a/Components/Calculation/Form/Insurance/InsuranceTable/index.jsx +++ b/Components/Calculation/Form/Insurance/InsuranceTable/index.jsx @@ -28,27 +28,31 @@ const Validation = observer(() => { return null; }); -function InsuranceTable() { +const InsuranceTable = observer(() => { const store = useStore(); const { values } = store.$tables.insurance; + return ( + + + + ); +}); + +export default function () { return ( - -
- + ); } - -export default InsuranceTable;