Skip to content

Conversation

andriyor
Copy link

#273

I'm trying to avoid export default to simplify debugging
Avoid Export Default - TypeScript Deep Dive

It would be nice to get a review about the styles and any other feedback welcome
Thanks!

const type = editMode ? false : variable.type;
const { props } = this;
switch (type) {
case false:
return this.getEditInput();
case 'string':
return <JsonString value={variable.value} {...props} />;
return <JsonString highlight={highlight} isCurrent={isCurrent} searchResult={true} value={variable.value} {...props} />;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You could avoid these duplicated props by adding them to the props variable.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants