UNPKG
react-foundation-apps
Version:
latest (0.6.1)
0.6.1
0.6.0
0.4.2
0.4.1
0.4.0
0.3.0
0.2.0
0.1.1
0.1.0
0.0.1
'React port of foundation-apps'
github.com/akiran/react-foundation-apps
akiran/react-foundation-apps
react-foundation-apps
/
docs
/
interchange
/
content.jsx
12 lines
(10 loc)
•
228 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
var
React
=
require
(
'react'
);
var
Interchange
=
require
(
'../../lib/interchange'
);
var
Content
=
React
.
createClass
({
render
:
function
(
) {
return
(
<
div
>
<
Interchange
/>
</
div
>
); } });
module
.
exports
=
Content
;