diff options
Diffstat (limited to 'vnext/src/ui/Contact.js')
-rw-r--r-- | vnext/src/ui/Contact.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/vnext/src/ui/Contact.js b/vnext/src/ui/Contact.js index 2d009738..a0d32e84 100644 --- a/vnext/src/ui/Contact.js +++ b/vnext/src/ui/Contact.js @@ -3,13 +3,14 @@ import { memo } from 'react'; import Avatar from './Avatar'; /** - * @typedef {Object} ContactProps + * @typedef {object} ContactProps * @property {import('../api').Chat} user - * @property {React.CSSProperties} style + * @property {import('react').CSSProperties} style */ /** * Contact component + * * @param {ContactProps} props */ function Contact({ user, style }) { |