React-native开发VScode插件
2020-04-07 本文已影响0人
喜剧收尾_XWX
React Native Snippet语法提示
- rnc
import React, { Component } from 'react';
import { View, Text,StyleSheet} from 'react-native';
export default class App extends Component {
constructor(props) {
super(props);
this.state = {
};
}
render() {
return (
<View>
<Text> App </Text>
</View>
);
}
}
- rnss
const styles = StyleSheet.create({
});