mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
11 lines
260 B
JavaScript
11 lines
260 B
JavaScript
/**
|
|
* @fileoverview Prevent usage of setState in componentDidMount
|
|
* @author Yannick Croissant
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const makeNoMethodSetStateRule = require('../util/makeNoMethodSetStateRule');
|
|
|
|
module.exports = makeNoMethodSetStateRule('componentDidMount');
|