DEV Community

Discussion on: Exports and Imports and Defaults, Oh My!

Collapse
 
qcgm1978 profile image
Youth

Another interesting style is introducing alias:

//You can import the default export by either

import Test1 from './test';
//or

import {default as Test2} from './test';
Enter fullscreen mode Exit fullscreen mode
Collapse
 
laurieontech profile image
Laurie

Definitely. Another nice piece of syntax to understand.