Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The default export was accidentally removed in [1]. Note: that being said, users are encouraged to use the named exports, because the default export has a different meaning for CommonJS and ES modules users. ```js // BAD import io from "socket.io-client"; // GOOD import { io } from "socket.io-client"; ``` Related: - #1505 - #1507 - #1508 [1]: 16b6569
- Loading branch information