有没有将StrictMode与React-Native一起使用的示例?

时间:2019-11-17 15:27:45

标签: react-native

据我所知,它会检查并为React-Native代码及其生命周期发出警告。

我从What is StrictMode in react?读到了它

如何在本机反应中使用它?

1 个答案:

答案 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;