bootstrap-4-react
Version:
Bootstrap 4 React components
13 lines (9 loc) • 297 B
JSX
import React, { Component } from 'react';
import { withClassName } from '../../utilities';
import { BA } from '../dom';
class NavbarBrand extends Component {
render() {
return <BA {...this.props}>{this.props.children}</BA>
}
}
export default withClassName('navbar-brand')(NavbarBrand);