off-design-system
v0.0.33
Published
오프 디자인 시스템
Downloads
17
Readme
OFF_Design_System
Getting Started
npm install off-design-system
yarn add off-design-system
프로젝트 루트에 index.css
파일을 추가해주세요.
import "serif-ui-components/dist/index.css";
import { Button } from "off-design-system";
const App = () => {
return (
<div>
<Button buttonType="outline" label="Serif test" />
</div>
);
};