eslint-plugin-virtual-blocks
v0.0.1
Published
```js import { RichText } from 'vtex.rich-text' import { Image } from 'vtex.store-image' import { Row, Col } from 'vtex.flex-layout'
Downloads
27
Readme
eslint-plugin-static-react-components
import { RichText } from 'vtex.rich-text'
import { Image } from 'vtex.store-image'
import { Row, Col } from 'vtex.flex-layout'
export default ({ src, content }) => {
return (
<Row>
<Col>
<Image src={src} />
</Col>
<Col>
<RichText text={content} />
</Col>
</Row>
)
}