hide patterns tab for now

+ add examples to welcome tab
This commit is contained in:
Felix Roos 2023-10-29 13:14:25 +01:00
parent b15f7bcf45
commit b245d44220
2 changed files with 18 additions and 4 deletions

View file

@ -86,7 +86,7 @@ export function Panel({ context }) {
<PanelTab name="intro" label="welcome" />
<PanelTab name="sounds" />
<PanelTab name="console" />
<PanelTab name="patterns" />
{/* <PanelTab name="patterns" /> */}
<PanelTab name="reference" />
<PanelTab name="settings" />
{TAURI && <PanelTab name="files" />}
@ -100,8 +100,8 @@ export function Panel({ context }) {
{activeFooter !== '' && (
<div className="relative overflow-hidden">
<div className="text-white overflow-auto h-full max-w-full" ref={footerContent}>
{activeFooter === 'intro' && <WelcomeTab />}
{activeFooter === 'patterns' && <PatternsTab context={context} />}
{activeFooter === 'intro' && <WelcomeTab context={context} />}
{/* {activeFooter === 'patterns' && <PatternsTab context={context} />} */}
{activeFooter === 'console' && <ConsoleTab log={log} />}
{activeFooter === 'sounds' && <SoundsTab />}
{activeFooter === 'reference' && <Reference />}