diff options
author | eug-vs <eug-vs@keemail.me> | 2020-06-28 03:53:13 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-06-28 03:53:13 +0300 |
commit | 64d58182cf5bc509af8ab1fa3fa57f30b46d6501 (patch) | |
tree | 4e34132f1bf65d878d4f8620c6d54418f580715e /src/components/UserStrip | |
parent | fa65b15a18a30060d4d6d663c8b2391d44e3fa63 (diff) | |
download | which-ui-64d58182cf5bc509af8ab1fa3fa57f30b46d6501.tar.gz |
feat: show search results
Diffstat (limited to 'src/components/UserStrip')
-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 } |