add Arpeggio / finish all Components

This commit is contained in:
Aoife
2020-11-21 00:31:19 -05:00
parent 67744f59c7
commit 612c447ca8
5 changed files with 241 additions and 1 deletions
+5 -1
View File
@@ -5,7 +5,7 @@ const timbreAdapter = createEntityAdapter({});
const timbreSlice = createSlice({
name: 'timbre',
initialState: timbreAdapter.getInitialState({
ids: ['timbre1', 'timbre2', 'vocoder', 'effects', 'arpeggiator'],
ids: ['timbre1', 'timbre2', 'vocoder', 'effects', 'arpeggio'],
entities: {
timbre1: {
id: 'timbre1',
@@ -56,6 +56,10 @@ const timbreSlice = createSlice({
delay: 'delay',
eq: 'eq',
},
arpeggio: {
arpeggA: 'arpeggA',
arpeggB: 'arpeggB',
},
},
currentTimbre: 'timbre1',
}),