Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

WhiteboardErrorDialog.tsx 355B

123456789101112131415
  1. import React from 'react';
  2. import AlertDialog from '../../../base/dialog/components/native/AlertDialog';
  3. /**
  4. * Dialog to inform the user that we couldn't load the whiteboard.
  5. *
  6. * @returns {JSX.Element}
  7. */
  8. const WhiteboardErrorDialog = () => (
  9. <AlertDialog
  10. contentKey = 'info.whiteboardError' />
  11. );
  12. export default WhiteboardErrorDialog;