Last active
May 17, 2019 04:17
-
-
Save gaperton/6c204e3018d67d7933c12562c831f0cf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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