diff --git a/vuu-ui/showcase/src/examples/Apps/NewTheme.examples.tsx b/vuu-ui/showcase/src/examples/Apps/NewTheme.examples.tsx index 4a152a337..5b13acbdb 100644 --- a/vuu-ui/showcase/src/examples/Apps/NewTheme.examples.tsx +++ b/vuu-ui/showcase/src/examples/Apps/NewTheme.examples.tsx @@ -93,63 +93,6 @@ const ShellWithNewTheme = () => { ]; }, [handleCloseDialog, handleSave]); - //TODO what the App actually receives is an array of layouts - const layout = useMemo(() => { - return { - type: "Stack", - props: { - className: "vuuShell-mainTabs", - TabstripProps: { - allowAddTab: true, - allowRenameTab: true, - animateSelectionThumb: false, - location: "main-tab", - }, - preserve: true, - active: 0, - }, - children: [ - { - type: "Stack", - props: { - active: 0, - title: "My Instruments", - TabstripProps: { - allowRenameTab: true, - allowCloseTab: true, - }, - }, - children: [ - { - type: "View", - props: { - title: "European Stock", - }, - style: { height: "calc(100% - 6px)" }, - children: [ - { - type: "AutoTableNext", - }, - ], - }, - { - type: "View", - props: { - title: "Other Stock", - }, - style: { height: "calc(100% - 6px)" }, - children: [ - { - type: "AutoTableNext", - }, - ], - }, - ], - }, - ], - }; - }, []); - return (