Skip to content

Commit 7e3c319

Browse files
committed
ProjectList. Builds btn added
1 parent d9199e9 commit 7e3c319

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

src/pages/ProjectListPage.tsx

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import {
33
Grid,
44
Typography,
55
Card,
6-
CardActionArea,
76
IconButton,
87
CardContent,
98
CardActions,
@@ -115,14 +114,17 @@ const ProjectsListPage = () => {
115114
<Card>
116115
<CardContent>
117116
<Typography>Key: {project.id}</Typography>
117+
<Typography>Name: {project.name}</Typography>
118+
<Typography>Updated: {project.updatedAt}</Typography>
118119
</CardContent>
119-
<CardActionArea component={Link} to={`${project.id}`}>
120-
<CardContent>
121-
<Typography>Name: {project.name}</Typography>
122-
<Typography>Updated: {project.updatedAt}</Typography>
123-
</CardContent>
124-
</CardActionArea>
125120
<CardActions>
121+
<Button
122+
color="primary"
123+
component={Link}
124+
to={`${project.id}`}
125+
>
126+
Builds
127+
</Button>
126128
<Button
127129
color="primary"
128130
component={Link}

0 commit comments

Comments
 (0)