Skip to content

Instantly share code, notes, and snippets.

@gaperton
Last active May 17, 2019 04:17
Show Gist options
  • Save gaperton/6c204e3018d67d7933c12562c831f0cf to your computer and use it in GitHub Desktop.
Save gaperton/6c204e3018d67d7933c12562c831f0cf to your computer and use it in GitHub Desktop.
export const EditUser = ({ $selected, close }) => {
const $filter = useLink('');
return (
<>
<DelayedInput autoFocus
$value={ $filter }
placeholder="Start typing..."
onBlur={ close } />
{ $filter.value ?
<UsersList filter={$filter.value} $selected={$selected} />
: void 0 }
</>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment