import {ControllerProps} from 'strikejs-react'; 

export interface <%= controller.name %>Props extends ControllerProps<<%= controller.name %>State>{

}

export interface <%= controller.name %>State{

}

export const <%= controller.name %>StateKey = '<%= controller.name %>ID'; 

export const <%= controller.name %>InitialState:<%= controller.name %>State = {
    
}