summaryrefslogtreecommitdiffstats
path: root/src/renderer/editor/editor.tsx
blob: fd8360a3116eb5b61e722e1a97d48d92a653bf16 (plain)
1
2
3
4
5
6
7
8
9
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>
	);
}