You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
React Spaces allow you to divide a page or container HTML element into spaces. These spaces know how to behave in relation to each other and can also be divided into further nested spaces.
6
6
@@ -16,27 +16,27 @@ Used at the top level of all other spaces.
16
16
17
17
This space will take over the full viewport of the browser window. Resizing the browser window will automatically adjust the size of this space and all the nested spaces.
18
18
19
-
**\<Fixed /\>**
19
+
**\<Fixed /\>**
20
20
21
21
This space can be given a height and optionally a width (by default it will size to 100% of it's container). All nested spaces will be contained within this fixed size space.
22
22
23
23
### Anchored spaces
24
24
25
25
These can be used within the top-level spaces **\<ViewPort /\>** and **\<Fixed /\>** or nested within other spaces.
26
26
27
-
**\<Left /\>** and **\<Right /\>**
27
+
**\<Left /\>** and **\<Right /\>**
28
28
29
29
A space anchored to the left or right of the parent container/space. A size can be specified in pixels or as a percentage to determine its width.
30
30
31
-
**\<Top /\>** and **\<Bottom /\>**
31
+
**\<Top /\>** and **\<Bottom /\>**
32
32
33
33
A space anchored to the top or bottom of the parent container/space. A size can be specified in pixels or as a percentage to determine its height.
34
34
35
35
There are resizable versions of these components called **\<LeftResizable /\>**, **\<RightResizable /\>**, **\<TopResizable /\>** and **\<BottomResizable /\>** which allow the spaces to be resized from the outer edge by dragging with the mouse.
36
36
37
37
### Other
38
38
39
-
**\<Fill /\>**
39
+
**\<Fill /\>**
40
40
41
41
A space which consumes any available area left in the parent container/space taking into account any anchored spaces on every side.
42
42
@@ -46,19 +46,15 @@ Layers allow you to create layers within a parent space, for example:
0 commit comments