这是一个在 React Native 中使用 StrictMode 的简单示例 StrictMode 可以直接从React导入,并且可以像将View包裹在其中一样使用。
import React, {Component, StrictMode} from 'react';
import {View} from 'react-native';
class Example extends Component {
render() {
return (
<StrictMode>
<View />
</StrictMode>
);
}
}
export default Example;
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
3214 次 |
| 最近记录: |