We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
현재 color, mixin, component, typo 이렇게 총 4가지의 경우가 있는데 이를 나누지않고 import 해서 사용하고 있다 아래와 같이 개선하는것은 어떨지?
// As-is import { yellow100, webOnly, NewBaseButton } from "remember-ui"; // To-be import { yellow100 } from "remember-ui/color"; import { webOnly } from "remember-ui/mixin"; import { NewBaseButton } from "remember-ui/component";
The text was updated successfully, but these errors were encountered:
yongsk0066
No branches or pull requests
현재 color, mixin, component, typo 이렇게 총 4가지의 경우가 있는데 이를 나누지않고 import 해서 사용하고 있다
아래와 같이 개선하는것은 어떨지?
The text was updated successfully, but these errors were encountered: