1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
import { Component } from 'react'; import withData from '../lib/withData'; import Items from '../components/Items'; import CreateItem from '../components/CreateItem'; import Count from '../components/Count'; class Home extends Component { render() { return ( <div> <Count/> <CreateItem /> <Items></Items> </div> ) } } export default withData(Home);