import AriaModal from 'react-aria-modal';
import * as React from 'react';
import { render } from 'react-dom';
declare const appContainer: HTMLElement;
const onExit = () => {};
render(
Hello world
,
appContainer
);
const DisplacedModal = AriaModal.renderTo('#some-id');
render(
Hello world
,
appContainer
);