You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using react 16.8.6. My code is working fine but I am getting syntax error. jsfmt don't support below import code.
exportCsv = () => {
this.setState({ isExporting: true }); import('./exportToCsvV2').then(bundle => {
try {
// some code
} catch (e) {
throw e;
}
});
};
The text was updated successfully, but these errors were encountered:
I am using react 16.8.6. My code is working fine but I am getting syntax error. jsfmt don't support below import code.
exportCsv = () => {
this.setState({ isExporting: true });
import('./exportToCsvV2').then(bundle => {
try {
// some code
} catch (e) {
throw e;
}
});
};
The text was updated successfully, but these errors were encountered: