wix-style-react
Version:
22 lines (20 loc) • 575 B
JavaScript
/* eslint-disable */
import React from 'react';
class BasicExample extends React.Component {
render() {
return (
<AnnouncementModalLayout
illustration={'generic_post.svg'}
title="Import Posts From WordPress"
primaryButtonText="Start Now"
linkText="Learn More"
onCloseButtonClick={() => {}}
>
<Text>
Your public posts, images and videos will be copied and added to your
Wix blog. Your site and current posts won't be affected.
</Text>
</AnnouncementModalLayout>
);
}
}