Optimize performance for large JSON datasets
mainWhen rendering very large objects or arrays, use these props to prevent performance degradation:
defaultInspectDepth: Sets the default depth for nested objects to expand. Setting this too high can cause performance issues. (Default:5)defaultInspectControl: A function(path, currentValue) => booleanthat determines whether a field is expanded or collapsed by default. This overridesdefaultInspectDepth.maxDisplayLength: Limits the number of items displayed inArrayandObjectbefore hiding them. (Default:30)groupArraysAfterLength: Groups array elements into a collapsible bracket notation after reaching this count. (Default:100)collapseStringsAfterLength: Truncates strings after this length and adds an ellipsis. Collapsed strings can be expanded by clicking them. (Default:50)