12 lines
179 B
JavaScript
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;
|