Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 })}>Open

this.setState({ open: false })}>

some contents




);
}
}
```

## License

MIT