This commit is contained in:
2021-08-22 12:05:54 +02:00
parent fdfad0b900
commit b1e65acda6
12 changed files with 1548 additions and 36 deletions

View File

@@ -1,8 +1,18 @@
import App from './ui/App.svelte';
import Store from "./Store";
const app = new App({
target: document.body,
props: {},
props: {
store: new Store({
bars: 10,
timeSig: {
down: 4,
up: 4,
},
drumSchema: ['LF', 'LH', 'RH', 'RF'],
}),
},
});
export default app;