wix-style-react
Version:
wix-style-react
16 lines (15 loc) • 440 B
JavaScript
/* eslint-disable react/prop-types */
import React from 'react';
import { MessageBoxFunctionalLayout } from 'wix-style-react/MessageBox';
export default (function () {
return React.createElement(
MessageBoxFunctionalLayout,
{
title: 'System Crashed!',
confirmText: 'Action',
theme: 'red',
dataHook: 'destructive-alert-standard'
},
'Something terribly bad happened, that cannot be undone.'
);
});