mirror of
https://github.com/strapi/strapi.git
synced 2025-09-24 07:50:33 +00:00
22 lines
411 B
JavaScript
22 lines
411 B
JavaScript
![]() |
/**
|
||
|
*
|
||
|
* EditRelations
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
import React from 'react';
|
||
|
import { FormattedMessage } from 'react-intl';
|
||
|
import styles from './styles.scss';
|
||
|
|
||
|
function EditRelations() {
|
||
|
return (
|
||
|
<div className={styles.editFormRelations}>
|
||
|
<FormattedMessage id="content-manager.EditRelations.title">
|
||
|
{(message) => <h3>{message}</h3>}
|
||
|
</FormattedMessage>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export default EditRelations;
|