import React from 'react'; import { faker } from '@faker-js/faker/locale/fr'; import PropTypes from 'prop-types'; import { Link } from 'react-router-dom'; import { DropdownMenu, DropdownItem } from './../../../components'; const DropdownProfile = (props) => ( { faker.name.firstName() } { faker.name.lastName() } My Profile Settings Billings Sign Out ) DropdownProfile.propTypes = { position: PropTypes.string, right: PropTypes.bool }; DropdownProfile.defaultProps = { position: "" }; export { DropdownProfile };