You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

no-did-mount-set-state.js 259 B

3 年之前
123456789
  1. /**
  2. * @fileoverview Prevent usage of setState in componentDidMount
  3. * @author Yannick Croissant
  4. */
  5. 'use strict';
  6. const makeNoMethodSetStateRule = require('../util/makeNoMethodSetStateRule');
  7. module.exports = makeNoMethodSetStateRule('componentDidMount');