Sun Apr 23 2017
Copied to clipboard! Copy reply
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
class Store
{
  constructor()
  {
    this.session = {};
    console.log('ay ma')
  }
}

export default class DatastoreStore extends Store
{

  constructor()
  {
    console.log('ay***')
    super()
  }

}