import { cx } from '@strudel.cycles/react'; import React from 'react'; import * as tunes from '../tunes.mjs'; export function PatternsTab({ context }) { return (

Examples

{Object.entries(tunes).map(([key, tune]) => ( { console.log('clikkk', tune); context.handleUpdate(tune); }} > {key} ))}
); }