gab-social/app/javascript/gabsocial/components/dummy.js
mgabdev 99982c0391 Finished updating the reformatting of propTypes and set redux, intl functions to end of component
• Finished:
- updating the reformatting of propTypes and set redux, intl functions to end of component

• Removed:
- Gif implementation
2020-08-18 19:22:15 -05:00

13 lines
211 B
JavaScript

import React from 'react'
export default class Dummy extends React.PureComponent {
render() {
return (
<div className={this.props.className}>
{this.props.children}
</div>
)
}
}