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

11 lines
178 B
JavaScript
Raw Normal View History

2020-05-09 03:17:19 +01:00
export default class Dummy extends PureComponent {
2020-05-10 04:26:58 +01:00
2020-05-09 03:17:19 +01:00
render() {
return (
<div className={this.props.className}>
{this.props.children}
</div>
)
2020-05-09 03:17:19 +01:00
}
2020-05-10 04:26:58 +01:00
2020-05-09 03:17:19 +01:00
}