Rename tab to icon and panel to content

This commit is contained in:
Jonas Dellinger
2022-04-22 23:12:52 +02:00
parent 9d170606eb
commit 20e2c55278

View File

@@ -1,7 +1,7 @@
export interface Plugin {
title: JSX.Element;
tab: JSX.Element;
panel: JSX.Element;
icon: JSX.Element;
content: JSX.Element;
onDismount?(): void;
}