Clean up & Add connection setup

This commit is contained in:
Thomas Nordquist
2019-01-06 13:30:35 +01:00
parent ad7794b30d
commit 32c3079821
26 changed files with 809 additions and 356 deletions

View File

@@ -53,6 +53,8 @@ class ValueRenderer extends React.Component<Props, State> {
return this.renderRawValue(node.message.value)
} else if (typeof json === 'number') {
return this.renderRawValue(node.message.value)
} else if (typeof json === 'boolean') {
return this.renderRawValue(node.message.value)
} else {
const theme = this.props.theme.palette.type === 'dark' ? 'monokai' : 'bright:inverted'
return <ReactJson