/** * The type of (redux) action which signals that a specific App will mount (in * React terms). * * { * type: APP_WILL_MOUNT, * app: App * } */ export const APP_WILL_MOUNT = 'APP_WILL_MOUNT'; /** * The type of (redux) action which signals that a specific App will unmount (in * React terms). * * { * type: APP_WILL_UNMOUNT, * app: App * } */ export const APP_WILL_UNMOUNT = 'APP_WILL_UNMOUNT'; /** * The type of (redux) action which signals that a specific App will navigate using a route (in * React terms). * * { * type: APP_WILL_NAVIGATE, * app: App, * route: Route * } */ export const APP_WILL_NAVIGATE = 'APP_WILL_NAVIGATE';