1
0
mirror of https://github.com/bobwen-dev/react-templates synced 2025-04-12 00:56:39 +02:00
react-templates/test/data/invalid/invalid-style-2.rt.js
2017-06-29 10:47:10 +03:00

13 lines
333 B
JavaScript

define([
'react',
'lodash'
], function (React, _) {
'use strict';
return function () {
function scopeG1() {
var g = 'ground';
return React.createElement('div', {}, React.createElement('span', { 'style': { backG: 'red' } }));
}
return scopeG1.apply(this, []);
};
});