diff options
author | Eugene Sokolov <eug-vs@keemail.me> | 2020-06-28 04:14:02 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-28 04:14:02 +0300 |
commit | 2f1ee1baab72be2ae38a921a7c0da7ce6e03fbc1 (patch) | |
tree | 3fdca2db655c80907cdef7ac3fdfabed6f78a5ec /src/components/UserStrip/UserStrip.tsx | |
parent | 5057fe763d423be607336d6b839909843c5a2567 (diff) | |
parent | ea9920d9ed0e7b3a3e565623e434e75bd3362f02 (diff) | |
download | which-ui-2f1ee1baab72be2ae38a921a7c0da7ce6e03fbc1.tar.gz |
Merge pull request #50 from which-ecosystem/search
SearchBar functionality
Diffstat (limited to 'src/components/UserStrip/UserStrip.tsx')
-rw-r--r-- | src/components/UserStrip/UserStrip.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/UserStrip/UserStrip.tsx b/src/components/UserStrip/UserStrip.tsx index 6e84768..f02adc3 100644 --- a/src/components/UserStrip/UserStrip.tsx +++ b/src/components/UserStrip/UserStrip.tsx @@ -10,8 +10,8 @@ import { User } from 'which-types'; interface PropTypes { user: User; - info: string | JSX.Element navigate: (prefix: string, id: string) => void; + info?: string | JSX.Element } |