0.3.8 • Published 5 years ago
fun-react-component-lib v0.3.8
React Components
A short but fun component library for React.js. The goal of this project is to provide you guys with quality components that can be used to build interesting and engaging apps.
Documentation app will be intoduced later on.
Installation
npm i fun-react-component-lib
Example Usage
import React from 'react';
import Feedback from 'fun-react-component-lib/lib/Feedback/feedback'
const App = () => {
return (
<React.Fragment>
<Feedback message="Oops, something went wrong :/" />
</React.Fragment>
);
}
export default App;