react-templates/test/data/simple.jsrt

11 lines
216 B
Plaintext

define(['react','lodash'], function (React, _) {
var comp = React.createClass({
render:
<template>
<div>hello world</div>
</template>
});
return comp;
});