import { IncidentState } from './IncidentState';

export default function (): IncidentState {
  return {
    data: null,
    list: [],
    loading: false,
  };
}
