mirror of
https://github.com/alice-lg/alice-lg.git
synced 2024-05-11 05:55:03 +00:00
21 lines
387 B
JavaScript
21 lines
387 B
JavaScript
|
|
import React from 'react'
|
|
|
|
|
|
export default class SearchInput extends React.Component {
|
|
render() {
|
|
return(
|
|
<div className="input-group">
|
|
<span className="input-group-addon">
|
|
<i className="fa fa-search"></i>
|
|
</span>
|
|
<input type="text"
|
|
className="form-control"
|
|
{...this.props} />
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
|