Socket
Socket
Sign inDemoInstall

@arcofine/sepaq-design-system

Package Overview
Dependencies
9
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

@arcofine/sepaq-design-system

Design system boilerplate


Version published
Maintainers
1

Readme

Source

🚅 Quick start

  1. Open the source code and start editing!

    Open the learnstorybook-design-system directory in your code editor of choice and building your first component!

Storybook Design System

Add global styles

  1. **Open src/shared/global.js. ** # Add this line ```javascript
export const fontUrl = 'YOUR_GLOBAL_FONT_URL'
```

2. ** Open .storybook/preview.js ** # Add those lines ```javascript

import React from 'react';
import { GlobalStyle } from '../src/shared/global';
export const decorators = [
  Story => (
    <>
      <GlobalStyle />
      <Story />
    </>
   ),
  ];

```

Add font tag

  1. ** Create the file .storybook/preview-head.html # Add this line

FAQs

Last updated on 06 May 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