리액트 컴포넌트에 대해 es6 Import alias 구문을 사용할 수 있습니까? 다음과 같은 작업을 수행하려고 하지만 null이 반환됩니다. import { Button as styledButton } from 'component-library' 다음으로, 다음과 같이 렌더링하려고 합니다. import React, { PropTypes } from "react"; import cx from 'classNames'; import { Button as styledButton } from 'component-library'; export default class Button extends React.Component { constructor(props){ super(props) } render() { ret..