I\'m trying to do something like the following, however it returns null:
import { Button as styledButton } from \'component-library\'
then atte
User-Defined Components Must Be Capitalized https://reactjs.org/docs/jsx-in-depth.html#user-defined-components-must-be-capitalized
change your code to
import { Button as StyledButton } from 'component-library'; ....bah...bah....bah