import * as React from 'react';
import { AllProps } from './Dialog.props';

export class Dialog extends React.PureComponent<AllProps, {}> {

    render() {
        return null;
    }
}