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
42
43
44
45
46
47
48
49
50
51
52
|
import * as React from 'react';
export class ModalContent extends React.Component {
public render() {
return (
<div
style={{
position: 'absolute',
display: 'flex',
flexDirection: 'column',
flex: 1,
top: 0,
left: 0,
right: 0,
bottom: 0,
}}>
{this.props.children}
</div>
);
}
}
export class ModalAlert extends React.Component {
public render() {
return (
<div
style={{
backgroundColor: 'rgba(0,0,0,0.5)',
position: 'absolute',
display: 'flex',
flexDirection: 'column',
flex: 1,
top: 0,
left: 0,
right: 0,
bottom: 0,
}}>
{this.props.children}
</div>
);
}
}
interface IModalContainerProps {
children?: React.ReactNode;
}
export class ModalContainer extends React.Component<IModalContainerProps> {
public render() {
return <div style={{ position: 'relative', flex: 1 }}>{this.props.children}</div>;
}
}
|