UNPKG
@panter/react-native-arkit
Version:
latest (0.2.3)
0.2.3
0.2.0
0.1.7
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
React Native binding for iOS ARKit
github.com/HippoAR/react-native-arkit
HippoAR/react-native-arkit
@panter/react-native-arkit
/
components
/
ARGroup.js
11 lines
(8 loc)
•
216 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
View
}
from
'react-native'
;
import
React
, {
Component
}
from
'react'
;
const
ARGroup
=
class
extends
Component
{
render
(
) {
return
<
View
>
{this.props.children}
</
View
>
; } };
module
.
exports
=
ARGroup
;