Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
import { MJMLColumnElement, elements, registerElement } from 'mjml'
import merge from 'lodash/merge'
import React, { Component } from 'react'
/*
* Wrap your dependencies here.
*/
const { text: MjText } = elements
const NAME = 'mock'
@MJMLColumnElement({
tagName: 'mj-mock',
content: ' ',
/*
* These are your default css attributes
*/
attributes: {
'color': '#424242',
'font-family': 'Helvetica',
'margin-top': '10px'
}
})
class Mock extends Component {
/*
* Build your styling here