Can you use es6 import alias syntax for React Components?

前端 未结 6 2083
抹茶落季
抹茶落季 2021-01-30 12:35

I\'m trying to do something like the following, however it returns null:

import { Button as styledButton } from \'component-library\'

then atte

6条回答
  •  天命终不由人
    2021-01-30 13:11

    Try to import this way

    import {default as StyledLibrary} from 'component-library';
    

    I suppose you export

    export default StyledLibrary
    

提交回复
热议问题