Skip to content

Instantly share code, notes, and snippets.

@perjo927
Created September 8, 2020 16:42
Show Gist options
  • Save perjo927/df7689176ef2556ee34a1d9803be983d to your computer and use it in GitHub Desktop.
Save perjo927/df7689176ef2556ee34a1d9803be983d to your computer and use it in GitHub Desktop.
View Logic
export const getAndResetInput = (e) => {
const [input] = e.target;
const { value } = input;
input.value = "";
return value;
};
export const maybeRender = (template, validator) =>
validator ? template : null;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment