diff --git a/src/containers/HomePage/Home.js b/src/containers/HomePage/Home.js index 328c01b..66b1ee5 100644 --- a/src/containers/HomePage/Home.js +++ b/src/containers/HomePage/Home.js @@ -1,4 +1,4 @@ -import React, { Component } from 'react'; +import React from 'react'; import { Row, Col @@ -7,25 +7,17 @@ import { import CreateTicketCard from './CreateTicketCard'; import SearchTicketCard from './SearchTicketCard'; - -class Home extends Component { - constructor(props) { - super(props); - this.state = {}; - } - - render() { - return ( - - - - - - - - - ); - } +const Home = (props) => { + return ( + + + + + + + + + ); } export default Home; \ No newline at end of file