import React from 'react'; import { Button } from '@strapi/design-system'; const config = { locales: ['it', 'es', 'en'], }; const bootstrap = (app) => { console.log('I AM BOOTSTRAPPED'); app.injectContentManagerComponent('editView', 'right-links', { name: 'PreviewButton', Component: () => ( ), }); }; export default { config, bootstrap, };