UNPKG

bootstrap-4-react

Version:
13 lines (9 loc) 294 B
import React, { Component } from 'react'; import { withClassName } from '../../utilities'; import { BDiv } from '../dom'; class CardBody extends Component { render() { return <BDiv {...this.props}>{this.props.children}</BDiv> } } export default withClassName('card-body')(CardBody);