free table editor - save and load

This commit is contained in:
Jan Prochazka
2020-10-28 18:42:02 +01:00
parent 2ba0c2cc46
commit 8a2b6f3f37
7 changed files with 162 additions and 28 deletions

View File

@@ -1,5 +1,5 @@
import _ from 'lodash';
import { useSetOpenedTabs, useCurrentDatabase } from '../utility/globalState';
import { useSetOpenedTabs } from '../utility/globalState';
import { openNewTab } from '../utility/common';
export default function useNewFreeTable() {
@@ -10,6 +10,6 @@ export default function useNewFreeTable() {
title: title || 'Table',
icon: 'freetable.svg',
tabComponent: 'FreeTableTab',
props: {},
props,
});
}