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

designs.js « mock_data « design_management « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 07f5c1b7457ad3a2017aa66ddc35664dce8275d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import design from './design';

export default {
  project: {
    issue: {
      designCollection: {
        designs: {
          edges: [
            {
              node: design,
            },
          ],
        },
      },
    },
  },
};