Formatting

This commit is contained in:
Sam Wright 2024-06-20 01:27:52 +10:00
parent d70aeaeb04
commit 684399bacb

View File

@ -18,4 +18,6 @@ export type CodeEditorProps = {
*
* It would be great to revisit this in in the future if/when Monaco improves mobile support.
*/
export const CodeEditor: (props: CodeEditorProps) => JSX.Element = isDesktop ? MonacoEditor : CodeMirrorEditor;
export const CodeEditor: (props: CodeEditorProps) => JSX.Element = isDesktop
? MonacoEditor
: CodeMirrorEditor;