/** * The reset form action name. */ export const RESET_FORM = 'indexes/reset-form'; /** * The reset form action creator. * * @returns The action. */ export const resetForm = () => ({ type: RESET_FORM, });