blocklancer.git
Version:
Freelancer React Job Board using Bot and Blockchain Technology
29 lines (27 loc) • 831 B
JavaScript
import React, { Component } from 'react';
import { withRouter } from 'react-router';
import { Panel, Grid, Row, Col, Image } from 'react-bootstrap';
class HomePage extends Component {
render() {
return (
<div className="home-page container">
<Grid>
<Row className="show-grid">
<Col xs={12} md={8}>
<Panel bsStyle="primary">
<Panel.Heading>
<Panel.Title componentClass="h3">Panel heading</Panel.Title>
</Panel.Heading>
<Panel.Body>
<Image src={require('assets/images/logo.svg')} circle />
</Panel.Body>
</Panel>
</Col>
<Col xs={6} md={4} />
</Row>
</Grid>
</div>
);
}
}
export default withRouter(HomePage);