UNPKG
tuxx
Version:
latest (0.2.0)
0.2.0
0.1.0
Framework built on React and Flux
github.com/TuxedoJS/TuxedoJS
TuxedoJS/TuxedoJS
tuxx
/
src
/
__tests__
/
testComponents.js
15 lines
(12 loc)
•
260 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
var
React
=
require
(
'tuxx/React'
);
//Creates a simple component to be used for testing
var
Idea
=
React
.
createClass
({
render
:
function
(
) {
return
(
<
div
className
=
"idea"
>
this.props.text
</
div
>
); } });
module
.
exports
=
Idea
;