0.0.2 • Published 2 years ago

@h00040/ui-framework_test v0.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

기본셋팅/사용법

# npm set
npm set registry http://10.106.22.201:21211
# Login
npm adduser --registry http://10.106.22.201:21211
# Publish
npm publish --registry http://10.106.22.201:21211

public 전환

# 클라이언트 설정
npm set registry https://registry.npmjs.org
# Login
npm adduser --registry https://registry.npmjs.org
# Publish
npm publish

Button

import { Button } from "@h00040/ui-framework";

const Default = () => {
  return <Button />;
};