blob: 4ab9026c5312cd0f0df9cf78c3fbfd4acde19cef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
export const project1 = {
id: 1,
name: 'Project One',
name_with_namespace: 'Project One',
avatar_url: 'test1',
};
export const project2 = {
id: 2,
name: 'Project Two',
name_with_namespace: 'Project Two',
avatar_url: 'test2',
};
export const allProjects = [project1, project2];
|