Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 1.13 KB

readme.md

File metadata and controls

52 lines (40 loc) · 1.13 KB

🔐 react-password

React components
for password management.



import React from 'react'
import ReactDOM from 'react-dom'
import { PasswordManager, Styles } from '../../lib/react-password'

let root = document.getElementById('root')
let app = React.createElement(PasswordManager, {}, [
  React.createElement(Styles, { key: 1 })
])

ReactDOM.render(app, root)

Installation

Install with npm:

npm install --save react-password

Or yarn:

yarn add react-password

Or using a script tag:

<script
  src="https://unpkg.com/react-password@^0.1/lib/index.umd.js"
  crossorigin="anonymous"
></script>