summaryrefslogtreecommitdiff
path: root/client/app.js
blob: c9a479ced1947d183ccec583d12bf20eadd142f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import React, { Component } from 'react'

import { Query, Results, Timing } from './components'

import './app.css'

export default function App () {
  return (
    <div className='app'>
      <h1>Search by Image</h1>
      <Query />
      <Results />
      <Timing />
    </div>
  )
}