UNPKG
soulmate
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
The most fast and stable javacript web framework.
github.com/soulMateJs/soulmate
soulMateJs/soulmate
soulmate
/
src
/
Components
/
Welcome
/
Welcome.jsx
13 lines
(9 loc)
•
211 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
React
, {
PropTypes
}
from
'react'
;
const
Welcome
= (
props
) => {
return
(
<
div
>
<
h1
>
Welcome soulmate javacript web framework
</
h1
>
</
div
>
); };
export
default
Welcome
;