Untitled
unknown
typescript
2 years ago
226 B
8
Indexable
// ...
results.map((result, index) => {
if (result.output === OUTPUT_HANDLER.MODAL) {
return null;
}
return (
<React.Fragment>
{/* ... */}
</React.Fragment>
);
})
// ...Editor is loading...