aboutsummaryrefslogtreecommitdiff
path: root/src/mobile/ImageUpload.tsx
blob: a43e6e365a35be461e1f6921e5470250ef2c4bd4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import * as ReactDOM from 'react-dom'; 
import React = require('react');

ReactDOM.render((
    <div
        style={{
            position: "absolute",
            width: "100%",
            height: "100%",
            background: "yellow"
        }}
    ></div>),
    document.getElementById('root')
);