cleaned out user reducer

This commit is contained in:
Fedor Katurov 2020-01-08 14:25:46 +07:00
parent 103097edbd
commit af8d270460
13 changed files with 462 additions and 282 deletions

View file

@ -10,7 +10,7 @@ type State = {
text: String;
}
export class StickerDesc extends React.PureComponent<Props, State> {
class StickerDesc extends React.PureComponent<Props, State> {
state = {
text: this.props.value,
};
@ -56,3 +56,5 @@ export class StickerDesc extends React.PureComponent<Props, State> {
)
}
}
export { StickerDesc };