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