// @flow import React from 'react'; import { UserPicture } from '$components/user/UserPicture'; import type { UserType } from '$constants/types'; type Props = { user: UserType, setMenuOpened: Function, }; export const UserButton = ({ setMenuOpened, user: { _id, photo, first_name, } }: Props) => (