mirror of
https://github.com/bobwen-dev/react-templates
synced 2025-04-12 00:56:39 +02:00
12 lines
303 B
JavaScript
12 lines
303 B
JavaScript
define([
|
|
'react/addons',
|
|
'lodash'
|
|
], function (React, _) {
|
|
'use strict';
|
|
function templateProp1(arg1) {
|
|
return React.createElement('div', {}, arg1);
|
|
}
|
|
return function () {
|
|
return React.createElement('div', { 'templateProp': templateProp1.bind(this) });
|
|
};
|
|
}); |