diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2020-03-17 18:43:22 +0100 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2020-03-17 18:43:22 +0100 |
commit | 6c8f2d780acd6c41d42de6b5fc8d84e765334b64 (patch) | |
tree | 5f157118407a571d6a2bf6d2563d2317b44fb186 /src/renderer/editor | |
parent | 7dce448d9bd20fd72849dab94cef3bae253c7867 (diff) | |
download | rpgedit-6c8f2d780acd6c41d42de6b5fc8d84e765334b64.tar rpgedit-6c8f2d780acd6c41d42de6b5fc8d84e765334b64.zip |
Prepare for editor implementation
- Add React and Material UI
- Add React Developer Tools
- Add ESlint plugin and config
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> + ); +} |