You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PopoverTitle.js 311 B

3 years ago
1234567
  1. import React from 'react';
  2. import PopoverHeader from './PopoverHeader';
  3. import { warnOnce } from './utils';
  4. export default function PopoverTitle(props) {
  5. warnOnce('The "PopoverTitle" component has been deprecated.\nPlease use component "PopoverHeader".');
  6. return React.createElement(PopoverHeader, props);
  7. }