Skip to content

Instantly share code, notes, and snippets.

View ahillelt's full-sized avatar

Alon Hillel-Tuch ahillelt

View GitHub Profile
@ahillelt
ahillelt / Input.js
Last active August 9, 2020 22:59 — forked from LukasFB/Input.js
import React, { useState } from "react"
import PropTypes from 'prop-types'
import "./input.css"
import TypingIndicator from "./TypingIndicator"
const input = (props) => {
const styles = ["plank", "staggered", "split"]
const [stateIsFocused, setStateIsFocused] = useState(false)