11 lines
327 B
TypeScript
Executable file
11 lines
327 B
TypeScript
Executable file
import { html } from '../../framework/model/misc';
|
|
import cancel from '../../static/icons/cancel.svg';
|
|
|
|
import './image-viewer.scss';
|
|
|
|
export const generate = (): html => `
|
|
<section id="image-viewer">
|
|
<div id="container"></div>
|
|
<img tabindex="0" id="cancel" src="${cancel}" alt="cancel"/>
|
|
</section>
|
|
`;
|