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

13 lines
211 B
JavaScript
Raw Normal View History

import React from 'react'
export default class Dummy extends React.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
}