interface IThis {
  safeAreaInsets: {
    top: number | null | any;
    bottom: number | null | any;
  }
}

export const commonVars: IThis = {
  safeAreaInsets: {
    top: null,
    bottom: null,
  }
}
