Skip to content

Commit

Permalink
Add fontawesome in react style
Browse files Browse the repository at this point in the history
  • Loading branch information
appleparan committed Oct 27, 2016
1 parent 569b9d3 commit 99afbad
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
12 changes: 6 additions & 6 deletions imports/ui/containers/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import React, { Component } from 'react';
import { render } from 'react-dom';

import { Grid, Row, Col } from 'react-bootstrap';
import FontAwesome from 'react-fontawesome';

// export class FooterLayout extends Component {
export const FooterLayout = () => (

<Grid>
Expand All @@ -13,8 +13,8 @@ export const FooterLayout = () => (
<p> <strong>Event manager</strong> </p>
<p>
Haeeun Han <br />
<i className="fa fa-phone" aria-hidden="true"></i> (82) 2 2123-6121 <br />
<i className="fa fa-envelope-o" aria-hidden="true"></i> <a href="mailto:[email protected]"> [email protected]</a>
<FontAwesome name="phone" /> (82) 2 2123-6121 <br />
<FontAwesome name="envelope-o" /> <a href="mailto:[email protected]"> [email protected]</a>
</p>
</Col>

Expand All @@ -24,9 +24,9 @@ export const FooterLayout = () => (
<strong>MEDVIEWSOFT</strong><br />
50 Yonsei-ro, Seodaemun-gu<br />
Seoul, Korea, 03722<br />
<i className="fa fa-link" aria-hidden="true"></i> <a href="http://mediviewsoft.com/"> homepage </a> <br />
<i className="fa fa-phone" aria-hidden="true"></i> (82) 2 2123-6121 <br />
<i className="fa fa-envelope-o" aria-hidden="true"></i> <a href="mailto:[email protected]"> [email protected]</a>
<FontAwesome name="link" /> <a href="http://mediviewsoft.com/"> homepage </a> <br />
<FontAwesome name="phone" /> (82) 2 2123-6121 <br />
<FontAwesome name="envelope-o" /> <a href="mailto:[email protected]"> [email protected]</a>
</address>
</Col>
</Row>
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"react-addons-pure-render-mixin": "^15.3.2",
"react-bootstrap": "^0.30.5",
"react-dom": "^15.3.2",
"react-fontawesome": "^1.2.0",
"react-meteor-data": "^0.2.9",
"react-mounter": "^1.2.0",
"react-router": "^3.0.0",
Expand Down

0 comments on commit 99afbad

Please sign in to comment.