bootstrap-4-react
Version:
Bootstrap 4 React components
13 lines (9 loc) • 317 B
JSX
import React, { Component } from 'react';
import { withClassName } from '../../utilities';
import { BDiv } from '../dom';
class CardImageOverlay extends Component {
render() {
return <BDiv {...this.props}>{this.props.children}</BDiv>
}
}
export default withClassName('card-img-overlay')(CardImageOverlay);