Remove file

This commit is contained in:
Bill 2021-07-21 13:20:30 -04:00
parent 6a002fab81
commit 69c5792660

View File

@ -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<IAvatarEditorState, IAvatarEditorAction> = (state, action) =>
{
switch(action.type)
{
default:
return state;
}
}