| 1 |
import React, { Fragment } from 'react'; |
| 2 |
import { pluginPath } from '../../constants/leadinConfig'; |
| 3 |
import UIImage from '../UIComponents/UIImage'; |
| 4 |
|
| 5 |
export default function FormGutenbergPreview() { |
| 6 |
return ( |
| 7 |
<Fragment> |
| 8 |
<UIImage |
| 9 |
alt="Create a new Hubspot Form" |
| 10 |
src={`${pluginPath}/public/assets/images/hubspot-form.png`} |
| 11 |
/> |
| 12 |
</Fragment> |
| 13 |
); |
| 14 |
} |
| 15 |
|