Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hokaccha/react-micro-flyout
A react component that provides minimum feature for flyout
https://github.com/hokaccha/react-micro-flyout
Last synced: about 2 months ago
JSON representation
A react component that provides minimum feature for flyout
- Host: GitHub
- URL: https://github.com/hokaccha/react-micro-flyout
- Owner: hokaccha
- Created: 2016-03-13T13:45:34.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-12-31T12:20:13.000Z (almost 7 years ago)
- Last Synced: 2024-09-17T12:38:22.971Z (3 months ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 4
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# react-micro-flyout
A react component that provides minimum feature for flyout (like as tooltip, popup, balloon UI).
## Install
```
$ npm install --save react-micro-flyout
```## Example
```javascript
import React from 'react';
import Flyout from 'react-micro-flyout';class Example extends React.Component {
constructor(props) {
super(props);
this.state = { open: false };
}render() {
return (
this.setState({ open: true })}>Openthis.setState({ open: false })}>
some contents
);
}
}
```## License
MIT