summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/serverless/stores/serverless_details_store.js
blob: 5394d2cded1b0dc5980452156924c980120d3211 (plain)
1
2
3
4
5
6
7
8
9
10
11
export default class ServerlessDetailsStore {
  constructor() {
    this.state = {
      functionDetail: {},
    };
  }

  updateDetailedFunction(func) {
    this.state.functionDetail = func;
  }
}