/** * * LeftMenuFooter * */ import React from 'react'; import { defineMessages, FormattedMessage } from 'react-intl'; import { PropTypes } from 'prop-types'; import LeftMenuLink from '../LeftMenuLink'; import Wrapper from './Wrapper'; import messages from './messages.json'; defineMessages(messages); function LeftMenuFooter({ version, ...rest }) { const staticLinks = [ { icon: 'book', label: 'documentation', destination: 'https://strapi.io/documentation', }, { icon: 'question-circle', label: 'help', destination: 'https://strapi.io/help', }, ]; return (
Strapi   v{version}
); } LeftMenuFooter.propTypes = { version: PropTypes.string.isRequired, }; export default LeftMenuFooter;