forked from kriasoft/react-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTextBox.js
More file actions
50 lines (43 loc) · 1.06 KB
/
TextBox.js
File metadata and controls
50 lines (43 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/**
* React Starter Kit (https://www.reactstarterkit.com/)
*
* Copyright © 2014-2016 Kriasoft, LLC. All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE.txt file in the root directory of this source tree.
*/
import React, { Component, PropTypes } from 'react';
import withStyles from 'isomorphic-style-loader/lib/withStyles';
import s from './TextBox.scss';
@withStyles(s)
class TextBox extends Component {
static propTypes = {
maxLines: PropTypes.number,
};
static defaultProps = {
maxLines: 1,
};
render() {
return (
<div className={s.root}>
{
this.props.maxLines > 1 ?
<textarea
{...this.props}
className={s.input}
ref="input"
key="input"
rows={this.props.maxLines}
/> :
<input
{...this.props}
className={s.input}
ref="input"
key="input"
/>
}
</div>
);
}
}
export default TextBox;