wix-style-react
Version:
23 lines (21 loc) • 612 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={() => {}}
onHelpButtonClick={() => {}}
>
<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>
);
}
}