15 lines
298 B
JavaScript
15 lines
298 B
JavaScript
![]() |
import React from 'react';
|
||
|
import { NoContent } from '@strapi/helper-plugin';
|
||
|
|
||
|
const NoChanges = () => (
|
||
|
<NoContent
|
||
|
content={{
|
||
|
id: 'emptyState',
|
||
|
defaultMessage:
|
||
|
'No differences between DB and sync directory. You are up-to-date!',
|
||
|
}}
|
||
|
/>
|
||
|
);
|
||
|
|
||
|
export default NoChanges;
|