diff options
Diffstat (limited to 'src/renderer/editor')
-rw-r--r-- | src/renderer/editor/editor.tsx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/renderer/editor/editor.tsx b/src/renderer/editor/editor.tsx new file mode 100644 index 0000000..fd8360a --- /dev/null +++ b/src/renderer/editor/editor.tsx @@ -0,0 +1,10 @@ +import * as React from 'react'; +import Button from '@material-ui/core/Button'; + +export function Editor(): JSX.Element { + return ( + <Button variant='contained' color='primary'> + Hello World + </Button> + ); +} |