val component=functionalComponent<MyProps>{props->
p{
+"文字"
}
}
修正後
val component:FunctionalComponent<MyProps> ={props->
buildElement {//this -> RBuilder
p {
+"文字"
}
}
}
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 3 years have passed since last update.
val component=functionalComponent<MyProps>{props->
p{
+"文字"
}
}
修正後
val component:FunctionalComponent<MyProps> ={props->
buildElement {//this -> RBuilder
p {
+"文字"
}
}
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked