import React, { FC, HTMLAttributes } from 'react';
import Grid from '@material-ui/core/Grid';
import { JsonEditor } from '../../../atoms/JsonEditor';
export interface Props extends HTMLAttributes {
value: string;
onChange: (event: any) => any;
}
export const AddDialogContent: FC = ({ value, onChange }: any) => {
return (
);
};