1
0
mirror of https://github.com/franjsco/tick3t synced 2025-06-05 22:19:18 +02:00

move Home

This commit is contained in:
frab1t
2019-05-10 16:24:22 +02:00
parent 38b07ea862
commit a2498cf75d

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;