diff --git a/src/views/avatar-editor/reducers/AvatarEditorReducer.tsx b/src/views/avatar-editor/reducers/AvatarEditorReducer.tsx deleted file mode 100644 index 3fe6ee7f..00000000 --- a/src/views/avatar-editor/reducers/AvatarEditorReducer.tsx +++ /dev/null @@ -1,30 +0,0 @@ -import { Reducer } from 'react'; - -export interface IAvatarEditorState -{ - -} - -export interface IAvatarEditorAction -{ - type: string; - payload: { - } -} - -export class AvatarEditorActions -{ - -} - -export const initialAvatarEditor: IAvatarEditorState = { -} - -export const AvatarEditorReducer: Reducer = (state, action) => -{ - switch(action.type) - { - default: - return state; - } -}