UNPKG
ko-rt
Version:
latest (1.0.1)
1.0.1
1.0.0
KO UI for React
github.comd/dtux-kangaroo/ko.git
dtux-kangaroo/ko
ko-rt
/
es
/
utils
/
tool
/
react.js
8 lines
(6 loc)
•
179 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
import
React
from
'react'
;
function
firstChild
(
props
) {
var
childrenArray =
React
.
Children
.
toArray
(props.
children
);
return
childrenArray[
0
] ||
null
; }
export
{ firstChild };