File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/main/src/components/Page Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ export interface PagePropTypes extends CommonProps {
23
23
*/
24
24
backgroundDesign ?: PageBackgroundDesign ;
25
25
/**
26
- * The (optional) custom header of this page. Use this aggregation only when a custom header
26
+ * The (optional) custom header of this page. Use this prop only when a custom header
27
27
* is constructed where the default header consisting of title text + nav button is not sufficient.
28
28
*/
29
29
customHeader ?: ReactNode ;
@@ -48,7 +48,7 @@ export interface PagePropTypes extends CommonProps {
48
48
*/
49
49
onNavButtonPress ?: ( e : CustomEvent < { } > ) => void ;
50
50
/**
51
- * The page has three distinct areas that can hold content - a header, content area and a footer .
51
+ * The content area of the page .
52
52
*/
53
53
children : ReactElement < any > | ReactElement < any > [ ] | ReactNode ;
54
54
}
@@ -58,7 +58,7 @@ const useStyles = createComponentStyles(styles, {
58
58
} ) ;
59
59
60
60
/**
61
- * A container control that holds one whole screen of an application.
61
+ * A layout control that holds one whole screen of an application.
62
62
*/
63
63
const Page : FC < PagePropTypes > = forwardRef ( ( props : PagePropTypes , ref : Ref < HTMLDivElement > ) => {
64
64
const {
You can’t perform that action at this time.
0 commit comments