Welcome to mirror list, hosted at ThFree Co, Russian Federation.

serverless_details_store.js « stores « serverless « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
  }
}