RN组件语法

任何人都可以使用最新的React-Native init cmd指向组件语法的方向吗?我不记得ES6类的语法非常喜欢它。RN组件语法

export default class App extends Component<{}> { 

}

其中,我没有看到括号以下内容。

export default class App extends Component { 

}

由于

回答:

参考:https://reactjs.org/docs/components-and-props.html

class Example extends Component { 

render() {

return <h1>Hello</h1>;

}

}

这是在反应定义组分的ES6方式。

以上是 RN组件语法 的全部内容, 来源链接: utcz.com/qa/264083.html

回到顶部