Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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;