mirror of
https://github.com/bobwen-dev/react-templates
synced 2025-04-12 00:56:39 +02:00
11 lines
216 B
Plaintext
11 lines
216 B
Plaintext
define(['react','lodash'], function (React, _) {
|
|
var comp = React.createClass({
|
|
render:
|
|
<template>
|
|
<div>hello world</div>
|
|
</template>
|
|
});
|
|
|
|
return comp;
|
|
});
|