Skip to content

Instantly share code, notes, and snippets.

View jacobvr's full-sized avatar

Jacob Voronin jacobvr

View GitHub Profile
@jacobvr
jacobvr / typeahead.js
Created July 2, 2020 16:50
Typeahead interview challenge
import React, { useState, useEffect, useRef } from "react";
import { arrayOf, string } from "prop-types";
import ReactDOM from "react-dom";
import "./styles.css";
/**
* Please note that this app is intentionally in a broken state. You must create your
* component and add it to `ReactDOM.render` (at the bottom of this file) to get started.
*/