peterschussheim
8/24/2016 - 11:55 PM

React Music

React Music

import React from 'react';
import { Song, Sequencer, Synth } from 'react-music';

<Song tempo={90} autoplay={false}>
  <Sequencer resolution={16} bars={1}>
    <Synth
      type="square"
      steps={[
        [0, 2, ["c2", "e2", "g2"]]
      ]}
    />
  </Sequencer>
</Song>

React Music

This Gist was automatically created by Carbide, a free online programming environment.

You can view a live, interactive version of this Gist here.