centro-ui
Version:
[](https://badge.fury.io/js/centro-ui)
29 lines (21 loc) • 435 B
JavaScript
import React from 'react';
import {
asset,
Pano,
Text,
View,
Plane,
} from 'react-vr';
export default class CnCardContent extends React.Component {
constructor(props) {
super(props)
}
render() {
return (
//Think about resizing images
<View style={{ display: 'flex', flex: 1}}>
{this.props.children}
</View>
);
}
};