Browse Source

fix: PageHeader title as not required property (#28374)

pull/28381/head
Andrey Zhukov 4 years ago
committed by GitHub
parent
commit
27df2d96a0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      components/page-header/index.tsx

2
components/page-header/index.tsx

@ -13,7 +13,7 @@ import LocaleReceiver from '../locale-provider/LocaleReceiver';
export interface PageHeaderProps {
backIcon?: React.ReactNode;
prefixCls?: string;
title: React.ReactNode;
title?: React.ReactNode;
subTitle?: React.ReactNode;
style?: React.CSSProperties;
breadcrumb?: BreadcrumbProps;

Loading…
Cancel
Save