Skip to content

Instantly share code, notes, and snippets.

@perjo927
Created September 8, 2020 15:59
Show Gist options
  • Save perjo927/322123b835fcc014b797dec19ced96ff to your computer and use it in GitHub Desktop.
Save perjo927/322123b835fcc014b797dec19ced96ff to your computer and use it in GitHub Desktop.
Input Template
import { html } from "lit-html";
export const Input = ({ onSubmit }) => html`
<form
@submit=${(e) => {
e.preventDefault();
onSubmit(e);
}}
>
<input placeholder="What needs to be done?" autofocus="" />
</form>
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment