Pass props to super() in PacChooser

This commit is contained in:
Ilya Ig. Petrov 2018-04-12 12:37:39 +05:00
parent 314429cb16
commit f9671fb1fe

View File

@ -55,7 +55,7 @@ export default function getPacChooser(theState) {
constructor(props) { constructor(props) {
super(); super(props);
this.state = { this.state = {
chosenPacName: 'none', chosenPacName: 'none',
}; };