add Vocoder Timbre

This commit is contained in:
[poww10s]
2020-11-19 22:28:08 -05:00
parent eaf75f5e94
commit 46c0fcee88
+8
View File
@@ -0,0 +1,8 @@
import React from 'react';
import { useSelector } from 'react-redux';
import { selectById } from './timbreSlice';
export default function Vocoder(props) {
const ids = useSelector((state) => selectById(state, props.id));
return <div></div>;
}