美文网首页
React-native开发VScode插件

React-native开发VScode插件

作者: 喜剧收尾_XWX | 来源:发表于2020-04-07 23:46 被阅读0次

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({
  
});

相关文章

网友评论

      本文标题:React-native开发VScode插件

      本文链接:https://www.haomeiwen.com/subject/ddmaphtx.html