diff --git a/src/containers/HomePage/Home.js b/src/containers/HomePage/Home.js new file mode 100644 index 0000000..328c01b --- /dev/null +++ b/src/containers/HomePage/Home.js @@ -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 ( + + + + + + + + + ); + } +} + +export default Home; \ No newline at end of file