import React from 'react'; import ReactDiffViewer, { DiffMethod } from 'react-diff-viewer'; import { ModalLayout, ModalBody, ModalHeader } from '@strapi/design-system/ModalLayout'; import { Grid, GridItem } from '@strapi/design-system/Grid'; import { Typography } from '@strapi/design-system/Typography'; const ConfigDiff = ({ isOpen, onClose, oldValue, newValue, configName }) => { if (!isOpen) { return null; } return ( Config changes for {configName} Sync directory Database ); }; export default ConfigDiff;