New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@uniquegood/realworld-studio-design

Package Overview
Dependencies
Maintainers
3
Versions
115
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@uniquegood/realworld-studio-design

It is a design system for convenient development.

  • 1.4.2
  • unpublished
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
3
Weekly downloads
 
Created
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

Package last updated on 04 Nov 2022

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc