Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/rakannimer/react-mobx-music

Render & play music with MobX and React.
https://github.com/rakannimer/react-mobx-music

Last synced: 12 days ago
JSON representation

Render & play music with MobX and React.

Awesome Lists containing this project

README

        

## React Mobx Music

### Install

```sh
yarn add react-mobx-music
```

### Usage

```jsx

{({ isLoading, instruments }) =>
isLoading ? (

Loading

) : (

Loaded !
{
instruments.get("accordion").play("A4");
}}
onMouseUp={() => {
instruments.get("accordion").stop("A4");
}}
>
Play A4


)
}

```