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> ) }