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