Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

CardBlock.js 285 B

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