1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-10-12 20:15:10 +02:00

update react-inspector n prettier

This commit is contained in:
Kushagra Gour
2023-08-16 20:53:31 +05:30
parent d267377ead
commit 84b23a302e
3 changed files with 44 additions and 84 deletions

View File

@@ -12,15 +12,12 @@ class LogRow extends Component {
const theme = {
...chromeDark,
...{
OBJECT_VALUE_STRING_COLOR: 'green',
BASE_FONT_SIZE: '20px',
TREENODE_FONT_SIZE: '20px'
}
};
return (
<Inspector theme={theme} theme="chromeDark" data={this.props.data} />
);
return <Inspector theme={theme} data={this.props.data} />;
}
}