File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ const meta = {
36
36
view.
37
37
</ Pane >
38
38
) ,
39
- right : < Pane name = "Right" > The content on the right.</ Pane > ,
40
39
children : (
41
40
< Pane name = "Content" >
42
41
< div style = { { fontWeight : "bold" } } >
@@ -64,11 +63,6 @@ const meta = {
64
63
description :
65
64
"JSX element to be rendered on the left of the content as render-prop." ,
66
65
} ,
67
- right : {
68
- control : false ,
69
- description :
70
- "JSX element to be rendered on the right of the content as render-prop." ,
71
- } ,
72
66
children : {
73
67
control : false ,
74
68
description : "Children to be rendered as the content." ,
@@ -78,8 +72,8 @@ const meta = {
78
72
layout : "centered" ,
79
73
} ,
80
74
tags : [ "autodocs" ] ,
81
- render : ( { children, left, right } ) => (
82
- < PageLayout left = { left } right = { right } >
75
+ render : ( { children, left } ) => (
76
+ < PageLayout left = { left } >
83
77
{ children }
84
78
</ PageLayout >
85
79
) ,
You can’t perform that action at this time.
0 commit comments