gab-social/app/javascript/gabsocial/components/input.js

9 lines
141 B
JavaScript
Raw Normal View History

2020-02-19 23:57:07 +00:00
export default class Input extends PureComponent {
render() {
const { children } = this.props
return (
<input />
)
}
}