section switching added

This commit is contained in:
[poww10s]
2020-11-20 08:02:37 -05:00
parent 0e89ade1c6
commit 63efc3e2a0
8 changed files with 110 additions and 11 deletions
+2 -5
View File
@@ -1,15 +1,12 @@
import React from 'react';
import Timbre from './features/timbre/Timbre';
import Vocoder from './features/timbre/Vocoder';
import TimbreSwitcher from './features/timbre/timbreSwitcher';
import './App.css';
function App() {
return (
<div className="App">
<header className="App-header">
<Timbre id="timbre1" />
{/*<Timbre id="timbre2" />
<Vocoder id="vocoder" />*/}
<TimbreSwitcher />
</header>
</div>
);