1. 程式人生 > >react-創建組件

react-創建組件

創建 default ren 樣式 nds class .com putc ()

//定義組件
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-創建組件