diff options
| author | jackyzha0 <[email protected]> | 2020-05-10 11:48:31 -0700 |
|---|---|---|
| committer | jackyzha0 <[email protected]> | 2020-05-10 11:48:31 -0700 |
| commit | 7a3ca8a956468db1e3a66b4f0ec3beb8ad0b81f3 (patch) | |
| tree | bab2b3aaa18a53aca30e805e1f9e91435a181d3c /frontend/src/components/Options.js | |
| parent | input length check and component splitting (diff) | |
| download | ctrl-v-7a3ca8a956468db1e3a66b4f0ec3beb8ad0b81f3.tar.xz ctrl-v-7a3ca8a956468db1e3a66b4f0ec3beb8ad0b81f3.zip | |
add focus opacity change, password input
Diffstat (limited to 'frontend/src/components/Options.js')
| -rw-r--r-- | frontend/src/components/Options.js | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/frontend/src/components/Options.js b/frontend/src/components/Options.js new file mode 100644 index 0000000..81f2046 --- /dev/null +++ b/frontend/src/components/Options.js @@ -0,0 +1,22 @@ +import React from 'react'; +import styled from 'styled-components' +import { PassInput } from './Inputs' + +const Float = styled.div` + float: right; +` + +class OptionsContainer extends React.Component { + render() { + return ( + <Float> + <PassInput + value={this.props.pass} + onChange={this.props.onChange} + id="passwordInput" /> + </Float> + ); + } +} + +export default OptionsContainer
\ No newline at end of file |