src/helpers/Insight.js
import InsightModel from '../models/Insight';
/**
* Helper class representing a tracker object. Tracker must have an action and section values.
* Optional values include:
* - value
* - label
* - triggered_at
* - brand_id
* - lat
* - lng
*/
class Insight extends InsightModel { }
export default Insight;