Socket
Socket
Sign inDemoInstall

@uniquegood/realworld-studio-design

Package Overview
Dependencies
69
Maintainers
3
Versions
115
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @uniquegood/realworld-studio-design

It is a design system for convenient development.


Version published
Maintainers
3
Created

Readme

Source

Realworld Studio

Build Realworld Studio UI components faster


Table of contents

  • 🚀 Getting Started
  • 📖 Example
  • 📕 Components

Getting Started

Download

Yarn

yarn add @uniquegood/realworld-studio-design @types/react-transition-group @emotion/core@^10.0.0

Start

App Provider는 애플리케이션 계층 전체에서 전역 설정을 공유 할 수 있도록하는 필수 구성 요소입니다.

import { AppProvider } from '@uniquegood/realworld-studio-design';
import { App } from './App';

const rootEl = document.getElementById('root');

ReactDOM.render(
  <AppProvider>
    <App />
  </AppProvider>,
  rootEl
);

if (module.hot) {
  module.hot.accept('./App', () => {
    const NextApp = require('./App').default;
    ReactDOM.render(<NextApp />, rootEl);
  });
}

Example

import { Button } from '@uniquegood/realworld-studio-design';

const ButtonExample = () => {
  return (
    <Button type="primary" size="medium">primary</Button>
  )
}

예시 버튼

Components

atoms

  • Avatar
  • Badge
  • Button
  • CheckBox
  • Divider
  • Icon
  • Image
  • Input
  • Label
  • RadioButton
  • Select
  • Tooltip
  • Typography

molecules

  • ActionList
  • Banner
  • ButtonGroup
  • Card
  • Dropzone
  • Popover
  • Toast

organisms

  • FormGroup
  • Modal
  • Navigation
  • TopBar

Keywords

FAQs

Last updated on 04 Nov 2022

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc