/** * * LeftMenuFooter * */ import React from 'react'; import { defineMessages, FormattedMessage } from 'react-intl'; import { PropTypes } from 'prop-types'; import LeftMenuLink from '../LeftMenuLink'; import styles from './styles.scss'; import messages from './messages.json'; defineMessages(messages); function LeftMenuFooter({ version, ...rest }) { // eslint-disable-line react/prefer-stateless-function const staticLinks = [ { icon: 'book', label: 'documentation', destination: 'https://strapi.io/documentation', }, { icon: 'question-circle', label: 'help', destination: 'https://strapi.io/help', }, ]; return (