mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 18:21:08 +08:00
17 lines
409 B
TypeScript
17 lines
409 B
TypeScript
import React from 'react';
|
|
|
|
type Decorator = (...args: any) => any;
|
|
|
|
interface MetaProps {
|
|
title: string;
|
|
decorators?: [Decorator];
|
|
parameters?: any;
|
|
}
|
|
|
|
/**
|
|
* This component is used to declare component metadata in docs
|
|
* and gets transformed into a default export underneath the hood.
|
|
* It doesn't actually render anything.
|
|
*/
|
|
export const Meta: React.FunctionComponent<MetaProps> = props => null;
|