move Home

This commit is contained in:
frab1t 2019-05-10 16:24:22 +02:00
parent 38b07ea862
commit a2498cf75d
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
import React, { Component } from 'react';
import {
Row,
Col
} from 'reactstrap';
import CreateTicketCard from './CreateTicketCard';
import SearchTicketCard from './SearchTicketCard';
class Home extends Component {
constructor(props) {
super(props);
this.state = {};
}
render() {
return (
<Row>
<Col sm={12} md={6}>
<CreateTicketCard />
</Col>
<Col sm={12} md={6}>
<SearchTicketCard />
</Col>
</Row>
);
}
}
export default Home;