-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.tsx
41 lines (38 loc) · 929 Bytes
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import React from 'react'
import { render } from 'react-dom'
import { Provider, Stage } from '../src'
import { Keybindings } from './Keybindings'
import { Toolbar } from './toolbar/Toolbar'
const imageList = [
{
src: 'http://attach.bbs.miui.com/forum/201209/14/193232tqoez8te5emgmf5q.jpg',
},
{
src: 'http://image.pbs.org/video-assets/iZOsUzY-asset-mezzanine-16x9-8YZsCRv.jpg',
},
]
render(
<Provider imageList={imageList}>
<Keybindings />
<div className="image-preview-wrapper">
<div className="stage-wrapper">
<Stage />
</div>
<div className="toolbar-wrapper">
<Toolbar />
</div>
</div>
</Provider>,
document.getElementById('root'),
)
// prevent default browser gestures
document.body.addEventListener(
'wheel',
(ev) => {
if (ev.metaKey || ev.ctrlKey) {
ev.preventDefault()
ev.stopPropagation()
}
},
{ passive: false },
)