Skip to content

prgrms-web-devcourse/OFF_Design_System

Repository files navigation

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>
  );
};