mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-12 06:08:34 +00:00
23 lines
457 B
JavaScript
23 lines
457 B
JavaScript
import React from 'react';
|
|
import { MiniRepl } from './components/MiniRepl';
|
|
import 'tailwindcss/tailwind.css';
|
|
import { controls, evalScope } from '@strudel.cycles/core';
|
|
|
|
evalScope(
|
|
controls,
|
|
import('@strudel.cycles/core'),
|
|
import('@strudel.cycles/tonal'),
|
|
import('@strudel.cycles/mini'),
|
|
import('@strudel.cycles/webaudio'),
|
|
);
|
|
|
|
function App() {
|
|
return (
|
|
<div>
|
|
<MiniRepl tune={`note("c3")`} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|