-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.tsx
52 lines (48 loc) · 1.43 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
import { GridStackOptions } from "gridstack";
import { useState } from "react";
import { defaultGridOptions } from "../../default-grid-options";
import { GridStackItem, GridStackDragInItem } from "../../lib";
import { GridStackContainer } from "../../lib/grid-stack-container";
export function DragIn() {
const [uncontrolledInitialOptions] = useState<GridStackOptions>(() => ({
...defaultGridOptions,
children: [
{ id: "004-item1", h: 2, w: 2, x: 0, y: 0 },
{ id: "004-item2", h: 2, w: 2, x: 2, y: 0 },
],
}));
return (
<div>
<div
style={{
padding: "10px",
display: "flex",
flexDirection: "row",
gap: "10px",
border: "1px solid gray",
marginBottom: "10px",
}}
>
<GridStackDragInItem widget={{ h: 2, w: 2 }}>
<div
style={{
border: "1px dashed green ",
backgroundColor: "lime",
padding: "0 10px",
}}
>
Drag me add to the grid
</div>
</GridStackDragInItem>
</div>
<GridStackContainer initialOptions={uncontrolledInitialOptions}>
<GridStackItem id="004-item1">
<div style={{ color: "yellow" }}>hello</div>
</GridStackItem>
<GridStackItem id="004-item2">
<div style={{ color: "blue" }}>grid</div>
</GridStackItem>
</GridStackContainer>
</div>
);
}