1export enum FormStates { 2 IDLE = 'idle', 3 LOADING = 'loading', 4 SUCCESS = 'success', 5 ERRORED = 'errored', 6} 7