mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-04-30 21:31:40 +08:00
13 lines
247 B
JavaScript
13 lines
247 B
JavaScript
import React from 'react';
|
|
import { View, StyleSheet } from 'react-native';
|
|
|
|
export default class Sandbox extends React.PureComponent {
|
|
render() {
|
|
return <View style={styles.root} />;
|
|
}
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
root: {}
|
|
});
|