1
0
mirror of https://github.com/storybookjs/storybook.git synced 2025-04-08 11:11:53 +08:00
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>;