import Tone from "tone"; const synth = new Tone.Synth().toMaster(); // note:ドレミなどの音階を指定 // dur:「4n」->「♩」(四分音符)、「8n」->「♪」(八分音符) // nullだと休符 const data = [ { note: "E4", dur: "8n" }, { note: "F4", dur: "4n" }, [{ note: "G4", dur: "8n" }, { note: "G4", dur: "8n" }], { note: "G4", dur: "4n" }, { note: "E4", dur: "8n" }, [{ note: "G4", dur: "8n" }, { note: "C5", dur: "8n" }], { note: "C5", dur: "8n" },