-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathcode-github.jsx
executable file
·35 lines (32 loc) · 1006 Bytes
/
code-github.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import { Card, CardActions, CardHeader, CardText } from "material-ui/Card";
import FlatButton from "material-ui/FlatButton";
import React, { Component } from "react";
import "./code-github.css";
class CodeGithubComponent extends Component {
render() {
return (
<div className="code-github">
<p className="headline">Look at my code, my code is amazing</p>
<Card>
<CardHeader
subtitle="Github Repository"
title="juanmeireles/personal-portfolio"
avatar="github.png"
/>
<CardText>
This application is made with React and Material UI. Check out the
code on Github.
</CardText>
<CardActions>
<FlatButton
label="View on github"
href="https://github.com/JuanMeireles/react-portifolio"
target="_blank"
/>
</CardActions>
</Card>
</div>
);
}
}
export default CodeGithubComponent;