@s20.ai/safecam-360-rn
Version:
A React Native component to view the interior panorama and exterior 360 degree views of a product featuring suppport for hotspots. Compatible with Android and iOS
20 lines (15 loc) • 421 B
JavaScript
/*
* Copyright © 2022 S20.AI India Pvt. Ltd.
* Contact - origin@s20.ai
* License - Licensed as per https://docs.s20.ai/license.html
*/
import React from 'react';
import {View} from 'react-native';
const Center = (props) => {
return(
<View style={{flexGrow:1, justifyContent:"center", alignItems:"center"}}>
{props.children}
</View>
)
}
export default Center;