2.1.17 • Published 5 years ago
@matt-dunn/react-wireframes v2.1.17
@matt-dunn/react-wireframes

React component to annotate your components — useful for prototypes and proof of concepts.
Getting Started
npm install --save @matt-dunn/react-wireframes
or
yarn add @matt-dunn/react-wireframes
Annotate a component
const AnnotatedMyComponent = withWireframeAnnotation({
title: "MyComponent title",
description: "MyComponent description.",
})(MyComponent);
Wrap your application with the container
<WireframeContainer>
<AnnotatedMyComponent />
{/*...application*/}
</WireframeContainer>
API
See Storybook.
Example Implementation
This example shows a set of components annotated using react-wireframes
.
Simple bare-bones example
import ReactDOM from "react-dom";
import React from "react";
import {
WireframeContainer, withWireframeAnnotation,
} from "@matt-dunn/react-wireframes";
const MyComponent = () => <article>Hello world</article>;
const AnnotatedMyComponent = withWireframeAnnotation({
title: "MyComponent title",
description: "MyComponent description.",
})(MyComponent);
const app = (
<WireframeContainer>
<AnnotatedMyComponent />
</WireframeContainer>
);
ReactDOM.render(
app,
document.getElementById("app"),
);
License
The MIT License (MIT) Copyright (c) 2020 Matt Dunn
2.1.17
5 years ago
2.1.16
5 years ago
2.1.15
5 years ago
2.1.14
5 years ago
2.1.13
5 years ago
2.1.12
5 years ago
2.1.9
5 years ago
2.1.10
5 years ago
2.1.11
5 years ago
2.1.4
5 years ago
2.1.6
5 years ago
2.1.5
5 years ago
2.1.7
5 years ago
2.1.2
5 years ago
2.1.3
5 years ago
2.1.1
5 years ago
2.0.7
5 years ago
2.0.6
5 years ago
2.0.5
5 years ago
2.0.4
5 years ago
2.0.3
5 years ago
2.0.2
5 years ago
2.0.1
5 years ago
2.0.0
5 years ago
1.3.0
5 years ago
1.2.3
5 years ago
1.2.2
5 years ago
1.2.1
5 years ago
1.2.0
5 years ago
1.1.5
5 years ago
1.1.4
5 years ago
1.1.3
5 years ago
1.1.2
5 years ago
1.1.1
5 years ago
1.1.0
5 years ago
1.0.27
5 years ago
1.0.22
5 years ago
1.0.21
5 years ago
1.0.26
5 years ago
1.0.25
5 years ago
1.0.24
5 years ago
1.0.23
5 years ago
1.0.20
5 years ago
1.0.19
5 years ago
1.0.18
5 years ago
1.0.17
5 years ago