summaryrefslogtreecommitdiffstats
path: root/stepped-solutions/17/frontend/pages/index.js
blob: 7a29ae0d9886db1de14178303580488f52e65bc7 (plain)
1
2
3
4
5
6
7
8
9
import Items from '../components/Items';

const Home = props => (
  <div>
    <Items />
  </div>
);

export default Home;