Destructure Spread off Import ES6

Viewed 6487
import {Component, ...actions} from '../MyModule';

Seems to be throwing a linting error. Is there a reason why you can't "spread" on an ES6 import statement?

1 Answers
Related