Addon-docs: Make Meta block subcomponents optional

This commit is contained in:
Michael Shilman 2020-07-15 18:31:28 +08:00
parent 4e8013d3c5
commit 4fc6f7174c

View File

@ -10,7 +10,7 @@ type Decorator = (...args: any) => any;
interface MetaProps {
title: string;
component?: Component;
subcomponents: Record<string, Component>;
subcomponents?: Record<string, Component>;
decorators?: [Decorator];
parameters?: any;
}