UNPKG

mdc-react

Version:

Material Components for the web implemented in React

13 lines (9 loc) 314 B
import { forwardRef } from 'react'; import { cssClasses } from './constants'; const DialogContent = forwardRef((props, ref) => { return ( <div ref={ref} className={cssClasses.CONTENT} {...props} /> ); }); DialogContent.displayName = 'MDCDialogContent'; export default DialogContent;