UNPKG
ya-irc
Version:
latest (1.0.0)
1.0.0
Yet Another IRC client
github.com/maxArturo/ya-irc
maxArturo/ya-irc
ya-irc
/
src
/
Hello.js
14 lines
(11 loc)
•
225 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
React
, {
Component
}
from
'react'
export
default
class
Hello
extends
Component
{
render
() {
return
(
<
div
className
=
'test'
>
<
h3
>
Hello World
</
h3
>
<
p
>
I am here
</
p
>
</
div
>
) } }