export default {
  track: (...args: any[]) => {
    console.log("not running mixpanel track", ...args);
  },
  identify: (...args: any[]) => {
    console.log("not running mixpanel identify", ...args);
  },
  init: (...args: any[]) => {
    console.log("not running mixpanel identify", ...args);
  },
};
