答案 0 :(得分:0)
这是在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;