open import/export tab function

This commit is contained in:
SPRINX0\prochazka
2024-09-16 12:47:13 +02:00
parent a7846b4adf
commit d255273368
5 changed files with 74 additions and 46 deletions

View File

@@ -0,0 +1,14 @@
import openNewTab from './openNewTab';
export function openImportExportTab(editorProps) {
openNewTab(
{
tabComponent: 'ImportExportTab',
title: 'Import/Export',
icon: 'img export',
},
{
editor: editorProps,
}
);
}