Blame view

src/InputGroup/InputGroup.js 168 Bytes
3a3ecabe   Imshann   init
1
2
3
  import template from "./InputGroup.html";
  
  class InputGroup {
a77e7b1a   Imshann   优化InputGroup组件
4
5
      render() {
          return template;
3a3ecabe   Imshann   init
6
      }
a77e7b1a   Imshann   优化InputGroup组件
7
8
9
10
  }
  
  InputGroup.propTypes = {
      compact: PropTypes.boolean
3a3ecabe   Imshann   init
11
  }