wix-style-react
Version:
18 lines (16 loc) • 646 B
JavaScript
/* eslint-disable react/prop-types */
import React from 'react';
import { MessageBoxMarketerialLayout } from 'wix-style-react';
export default () => (
<MessageBoxMarketerialLayout
title="Looking good! Your site is on Google"
content="All of your pages are indexed and now come up as separate search results on Google. This is great for your visibility!"
confirmText="Button"
imageUrl="https://static.wixstatic.com/media/9ab0d1_8f1d1bd00e6c4bcd8764e1cae938f872~mv1.png"
theme="blue"
primaryButtonLabel="Button"
primaryButtonDisabled
dataHook="announctement-disabled-action"
onClose={() => undefined}
/>
);