芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/.cache/admin/src/containers/Onboarding/StaticLinks/index.js
/** * * StaticLinks * */ import React from 'react'; import { useIntl } from 'react-intl'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import StyledLink from './StyledLink'; function StaticLinks() { const { formatMessage } = useIntl(); const staticLinks = [ { icon: 'book', label: formatMessage({ id: 'app.components.LeftMenuFooter.documentation' }), destination: 'https://strapi.io/documentation', }, { icon: 'file', label: formatMessage({ id: 'app.static.links.cheatsheet' }), destination: 'https://strapi-showcase.s3-us-west-2.amazonaws.com/CheatSheet.pdf', } ]; return (
{staticLinks.map(link => { const { icon, label, destination } = link; return (
{label}
); })}
); } export default StaticLinks;