You can use string concatenation
<a data-featherlight={'string' + this.props.data.imageUrl}>
or use Template strings new ES2015 feature
<a data-featherlight={ `string${this.props.data.imageUrl}` }>
You can use string concatenation
<a data-featherlight={'string' + this.props.data.imageUrl}>
or use Template strings new ES2015 feature
<a data-featherlight={ `string${this.props.data.imageUrl}` }>