Skip to content

Instantly share code, notes, and snippets.

@r3dm1ke
Created February 27, 2020 18:34
Show Gist options
  • Save r3dm1ke/a23cb0d43e2c8260dda2a3d94b79ee6c to your computer and use it in GitHub Desktop.
Save r3dm1ke/a23cb0d43e2c8260dda2a3d94b79ee6c to your computer and use it in GitHub Desktop.
import React, {useState} from 'react';
function App() {
const [password, setPassword] = useState('');
return (
<>
<input
placeholder='Enter the password'
value={password}
onChange={e => setPassword(e.target.value)}
/>
{password === 'abacaba' ? <p>Access granted</p> : <p>Access denied</p>}
</>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment