summaryrefslogtreecommitdiffstats
path: root/pages/index.js
blob: ed8825a64923946ca5cedff0fc8e8eeb9e3096c8 (plain)
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);