1.0.1 • Published 6 years ago
react-fancy-components v1.0.1
React-Fancy-Components
React-Fancy-Components is a React Components library.
Demo
Live demo https://andrewbuntsev.github.io/react-fancy-components
Installation
npm install react-fancy-components
Usage
import { tooltip } from 'react-fancy-components';
........
function App() {
let TooltippedComponent = tooltip(<input />, {
text: "Awesome tooltip!!",
style: {
fontWeight: "bold"
}
});
return (
<div className="App">
<TooltippedComponent />
</div>
);
}
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.