UNPKG
@clipped/plugin-react
Version:
latest (1.3.5)
1.3.5
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
React plugin for clipped
@clipped/plugin-react
/
template
/
App.js
9 lines
(5 loc)
•
177 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
React
from
'react'
import
{hot}
from
'react-hot-loader'
const
title =
'Hello React from Clipped!'
const
App
= (
) =>
<
div
>
{title}
</
div
>
export
default
hot
(
module
)(
App
)