Files
30-seconds-of-code/react/snippets/password-revealer.md
Angelos Chalaris 462322f885 Prepare for merge
2023-05-01 22:56:37 +03:00

32 lines
806 B
Markdown

---
title: Show/hide password toggle
type: snippet
tags: [components,input,state]
author: chalarangelo
cover: thread
dateModified: 2020-11-25T20:46:35+02:00
---
Renders a password input field with a reveal button.
- Use the `useState()` hook to create the `shown` state variable and set its value to `false`.
- When the `<button>` is clicked, execute `setShown`, toggling the `type` of the `<input>` between `'text'` and `'password'`.
```jsx
const PasswordRevealer = ({ value }) => {
const [shown, setShown] = React.useState(false);
return (
<>
<input type={shown ? 'text' : 'password'} value={value} />
<button onClick={() => setShown(!shown)}>Show/Hide</button>
</>
);
};
```
```jsx
ReactDOM.createRoot(document.getElementById('root')).render(
<PasswordRevealer />
);
```