Wireframes is a set of components for building wireframes and prototypes with React.
npm i wireframes-react
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.
import { WfTitle, WfButton } from 'wireframes-react';
export default function App() {
return (
<>
<WfTitle>Demo</WfTitle>
<WfButton>Click me!</WfButton>
</>
);
}
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
BSD-3-Clause