2023-01-11 11:26:08 +03:00

9 lines
196 B
JavaScript

/* eslint-disable import/prefer-default-export */
import { useStore } from 'stores/hooks';
export function useRow(key) {
const { $tables } = useStore();
return $tables.insurance.row(key);
}