mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 11:56:00 +00:00
16 lines
311 B
TypeScript
16 lines
311 B
TypeScript
import openNewTab from './openNewTab';
|
|
|
|
export function openImportExportTab(editorProps, additionalProps = {}) {
|
|
openNewTab(
|
|
{
|
|
tabComponent: 'ImportExportTab',
|
|
title: 'Import/Export',
|
|
icon: 'img export',
|
|
props: additionalProps,
|
|
},
|
|
{
|
|
editor: editorProps,
|
|
}
|
|
);
|
|
}
|