UNPKG

react-vr-geolocate

Version:

20 lines (18 loc) 434 B
import React from "react"; import { Sphere } from 'react-vr'; class SpaceSphere extends React.Component{ render(){ return ( <Sphere lit={this.props.lit} texture={this.props.wrap} radius={this.props.radius} widthSegments={40} heightSegments={40} /> ) } } export default SpaceSphere;