@matt-dunn/react-wireframes
Version:
React component to annotate your components — useful for prototypes and proof of concepts
15 lines (14 loc) • 470 B
TypeScript
/** !
* Copyright (c) 2019, Matt Dunn
*
* @author Matt Dunn
*/
/// <reference types="react" />
import { ParentReference, WireframeAnnotation } from "../api";
declare type WireframeAnnotationsNoteProps = {
annotation: WireframeAnnotation;
isHighlighted?: boolean;
parentReference?: ParentReference;
};
export declare const WireframeAnnotationNote: ({ annotation, parentReference, isHighlighted }: WireframeAnnotationsNoteProps) => JSX.Element;
export {};