Component library for building wireframes and prototypes with React
npm install wireframes-reactbash
npm i wireframes-react
`
Usage
To make use of your React component library in your React application, import your components from your React component library in the file where you want to use them.
`jsx
import { WfTitle, WfButton } from 'wireframes-react';
export default function App() {
return (
<>
Demo
Click me!
>
);
}
``