mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 08:55:18 +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');
|