storybook-addon-markuplint-proto
Version:
Prototype of unofficial markuplint Storybook addon
15 lines (14 loc) • 359 B
TypeScript
import React from "react";
declare type Results = {
danger: any[];
warning: any[];
};
interface PanelContentProps {
results: Results;
}
/**
* Checkout https://github.com/storybookjs/storybook/blob/next/addons/jest/src/components/Panel.tsx
* for a real world example
*/
export declare const PanelContent: React.FC<PanelContentProps>;
export {};