New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

review-me-design-system

Package Overview
Dependencies
Maintainers
0
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

review-me-design-system

review me 디자인 시스템

latest
Source
npmnpm
Version
0.0.22
Version published
Maintainers
0
Created
Source

Review Me Design System

This is a shared component library incorporating Review Me's design system. Before getting started, please refer to the Storybook link below.

storybook

Installation

npm

npm i review-me-design-system

yarn

yarn add review-me-design-system

Getting Started

  • Wrap your application with the ReviewMeProvider provided by review-me-design-system

    import { ReviewMeProvider } from 'review-me-design-system';
    
    <ReviewMeProvider>
      <App />
    </ReviewMeProvider>;
    
  • Import components from review-me-design-system and use the imported components

    import { Icon, Button } from 'review-me-design-system';
    
    const Component = () => {
      return (
        <>
          <div>component</div>
          <Icon iconName="bookMark" />
          <Button variant="default" size="s">
            button
          </Button>
        </>
      );
    };
    

npm

storybook

Keywords

react

FAQs

Package last updated on 28 Feb 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts