1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-25 03:02:21 +00:00

Merge pull request #479 from Fifthwolf/patch-1

Update style.md
This commit is contained in:
Ruan YiFeng 2017-08-20 07:20:13 +08:00 committed by GitHub
commit a2468adcbe

View File

@ -442,7 +442,7 @@ export default Breadcrumbs;
```javascript ```javascript
// bad // bad
import * as myObject './importModule'; import * as myObject from './importModule';
// good // good
import myObject from './importModule'; import myObject from './importModule';