React-native开发VScode插件

2020-04-07  本文已影响0人  喜剧收尾_XWX

React Native Snippet语法提示

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>
    );
  }
}
const styles = StyleSheet.create({
  
});
上一篇下一篇

猜你喜欢

热点阅读