import React from 'react'; import { SingleNoteLane } from '../../components/SingleNoteLane/SingleNoteLane'; import { tree44, exampleTree1, exampleTree2, IRhythmTree } from '../../musical-data'; import { RhythmTreeEditor } from '../../components/RhythmTreeEditor/RhythmTreeEditor'; export const SingleNoteLaneExample: React.FunctionComponent = () => { const [notes, setNotes] = React.useState([]); const [tree, setTree] = React.useState(tree44) return (
setNotes(newNotes)} />
); };