1 /** 2 * The type of (redux) action which signals that a specific App will mount (in 3 * React terms). 4 * 5 * { 6 * type: APP_WILL_MOUNT, 7 * app: App 8 * } 9 */ 10 export const APP_WILL_MOUNT = 'APP_WILL_MOUNT'; 11 12 /** 13 * The type of (redux) action which signals that a specific App will unmount (in 14 * React terms). 15 * 16 * { 17 * type: APP_WILL_UNMOUNT, 18 * app: App 19 * } 20 */ 21 export const APP_WILL_UNMOUNT = 'APP_WILL_UNMOUNT';