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

yourtoken-uikit

Package Overview
Dependencies
Maintainers
1
Versions
211
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

yourtoken-uikit

YourToken UI Kit

latest
npmnpm
Version
0.4.93
Version published
Weekly downloads
20
-70.59%
Maintainers
1
Weekly downloads
 
Created
Source

YourToken UI Kit

UI copmonents powering the YourToken ecosystem.

Available Scripts

Build the library

npm run rollup

Publish the library

npm publish

Run storybook locally

npm run storybook

Build storybook

npm run build-storybook

Reference code for state management in story files

import { useArgs } from "@storybook/preview-api";

import SomeComponent from "./Index";

export default {
  component: SomeComponent,
};

export const Default = {
  render: function Component(args) {
    const [, setArgs] = useArgs();

    const onChange = (value) => {
      args.onChange(value);
      setArgs({ value: value });
    };

    return <SomeComponent {...args} onChange={onChange} />;
  },
  args: {
    value: null,
  },
};

FAQs

Package last updated on 11 Apr 2024

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