10 lines
143 B
JavaScript
10 lines
143 B
JavaScript
|
// @flow
|
||
|
import * as ACTIONS from 'constants/action_types';
|
||
|
|
||
|
declare type ReportContentState = {
|
||
|
isReporting: boolean,
|
||
|
error: string,
|
||
|
};
|
||
|
|
||
|
|