react-创建组件
Posted 一天一个知识点
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react-创建组件相关的知识,希望对你有一定的参考价值。
//定义组件
class InputControlES6 extends React.Component{
render (){
return (<View style="{sty.container}"></View>);
}
};
//定义样式
var sty=StyleSheet.create({
container:{
backgroundColor:"yellow",
width:300,
height:200,
}
});
export default InputControlES6; //
以上是关于react-创建组件的主要内容,如果未能解决你的问题,请参考以下文章