diff options
Diffstat (limited to 'frontend/src/components/Options.js')
| -rw-r--r-- | frontend/src/components/Options.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/frontend/src/components/Options.js b/frontend/src/components/Options.js index 21e932a..f874c35 100644 --- a/frontend/src/components/Options.js +++ b/frontend/src/components/Options.js @@ -1,6 +1,6 @@ import React from 'react'; import styled from 'styled-components' -import { PassInput, ExpiryInput } from './Inputs' +import { PassInput, ExpiryInput, LangInput } from './Inputs' const Flex = styled.div` float: right; @@ -17,6 +17,10 @@ class OptionsContainer extends React.Component { value={this.props.pass} onChange={this.props.onChange} id="passwordInput" /> + <LangInput + value={this.props.lang} + onChange={this.props.onChange} + id="langInput" /> <ExpiryInput value={this.props.expiry} onChange={this.props.onChange} |