mirror of
https://github.com/strapi/strapi.git
synced 2025-08-14 19:56:41 +00:00
14 lines
266 B
JavaScript
14 lines
266 B
JavaScript
/*
|
|
* List Messages
|
|
*
|
|
* This contains all the text for the List component.
|
|
*/
|
|
import { defineMessages } from 'react-intl';
|
|
|
|
export default defineMessages({
|
|
header: {
|
|
id: 'app.containers.List.header',
|
|
defaultMessage: 'This is List container !',
|
|
},
|
|
});
|