storybook/addons/notes/storybook-addon-notes.d.ts
2017-05-15 00:08:46 +02:00

8 lines
194 B
TypeScript

import * as React from 'react';
export interface WithNotesProps extends React.HTMLProps<HTMLDivElement> {
notes?: string;
}
export const WithNotes: React.StatelessComponent<WithNotesProps>;