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

@tkwant/react-steps

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tkwant/react-steps

Npm Package: https://www.npmjs.com/package/@tkwant/react-steps

  • 0.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
28
increased by3.7%
Maintainers
1
Weekly downloads
 
Created
Source

React Stepper

Npm Package: https://www.npmjs.com/package/@tkwant/react-steps

Demo: https://stepper.tkwant.de

image

Installation

yarn add @tkwant/react-steps
npm i @tkwant/react-steps

Usage

import React, { useState } from "react";
import { Stepper, Step } from "@tkwant/react-steps";
import "@tkwant/react-steps/dist/Stepper.css";
interface Props {}

const App: React.FC<Props> = () => {
  const [curStep, setCurStep] = useState(0);
  return (
    <>
      <Stepper curStep={curStep} setCurStep={setCurStep}>
        <Step label="Step 0 " />
        <Step label="Step 1" />
        <Step>??</Step>
        <Step />
        <Step locked={curStep < 3} />
        <Step locked={curStep < 4} />
        <Step locked={curStep < 5} />
      </Stepper>
    </>
  );
};

export default App;

Keywords

FAQs

Package last updated on 05 Nov 2021

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