ohif-viewer/platform/viewer/src/components/EmptyViewport.jsx

12 lines
179 B
JavaScript

import React from 'react';
function EmptyViewport() {
return (
<div>
<p>Please drag a stack here to view images.</p>
</div>
);
}
export default EmptyViewport;