Как определить defaultProps для компонента реакции без состояния в машинописи?
Я хочу определитьdefaultprops
для моего чисто функционального компонента, но я получаю ошибку типа:
export interface PageProps extends React.HTMLProps<HTMLDivElement> {
toolbarItem?: JSX.Element;
title?: string;
}
const Page = (props: PageProps) => (
<div className="row">
<Paper className="col-xs-12 col-sm-offset-1 col-sm-10" zDepth={1}>
<AppBar
title={props.title}
zDepth={0}
style={{ backgroundColor: "white" }}
showMenuIconButton={false}
iconElementRight={props.toolbarItem}
/>
{props.children}
</Paper>
</div>
);
Page.defaultProps = {
toolbarItem: null,
};
Я знаю, что могу написать это:
(Page as any).defaultProps = {
toolbarItem: null,
};
Есть ли лучший способ добавитьdefaultProps
?