UNPKG

react-notification-center

Version:

react-notification-center keep all your notification in a single place

14 lines (11 loc) 319 B
import React from 'react'; const NotificationHeader = props => ( <div className="rn-header"> <h4>{props.children}</h4> </div> ); NotificationHeader.displayName = 'NotificationHeader'; NotificationHeader.proptypes = { children: React.PropTypes.node.isRequired }; export default NotificationHeader;