type ConstantState = {
  APP_ID: string;
};
const INITIAL_STATE = {
  APP_ID: 'wxf5912b79bba23663',
};

export default function counter(state: ConstantState = INITIAL_STATE) {
  return state;
}