import Ember from 'ember';

export default Ember.Component.extend({
  actions: {
    clearPersonData() {
      this.set('person', null)
    }
  }
});