aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/editor/EditorButtons.tsx
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2023-08-30 22:14:50 +0200
committerLibravatar Kristóf Marussy <kristof@marussy.com>2023-08-31 00:57:52 +0200
commitd4504285d15aeb0cb1560a5f522ac1edc02b7d4c (patch)
treef279dd795fc715c31ebb3b46a45e8ab12ac6d8e2 /subprojects/frontend/src/editor/EditorButtons.tsx
parentfeat(frontend): window pane switcher (diff)
downloadrefinery-d4504285d15aeb0cb1560a5f522ac1edc02b7d4c.tar.gz
refinery-d4504285d15aeb0cb1560a5f522ac1edc02b7d4c.tar.zst
refinery-d4504285d15aeb0cb1560a5f522ac1edc02b7d4c.zip
feat(frontend): implement grid view
Diffstat (limited to 'subprojects/frontend/src/editor/EditorButtons.tsx')
-rw-r--r--subprojects/frontend/src/editor/EditorButtons.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/subprojects/frontend/src/editor/EditorButtons.tsx b/subprojects/frontend/src/editor/EditorButtons.tsx
index a7ac2f85..ca51f975 100644
--- a/subprojects/frontend/src/editor/EditorButtons.tsx
+++ b/subprojects/frontend/src/editor/EditorButtons.tsx
@@ -20,6 +20,7 @@ import ToggleButton from '@mui/material/ToggleButton';
20import ToggleButtonGroup from '@mui/material/ToggleButtonGroup'; 20import ToggleButtonGroup from '@mui/material/ToggleButtonGroup';
21import { observer } from 'mobx-react-lite'; 21import { observer } from 'mobx-react-lite';
22 22
23import ConnectButton from './ConnectButton';
23import type EditorStore from './EditorStore'; 24import type EditorStore from './EditorStore';
24 25
25// Exhastive switch as proven by TypeScript. 26// Exhastive switch as proven by TypeScript.
@@ -105,6 +106,7 @@ export default observer(function EditorButtons({
105 > 106 >
106 <FormatPaint fontSize="small" /> 107 <FormatPaint fontSize="small" />
107 </IconButton> 108 </IconButton>
109 <ConnectButton editorStore={editorStore} />
108 </Stack> 110 </Stack>
109 ); 111 );
110}); 112});