9 lines
196 B
JavaScript
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);
|
|
}
|