clipper/frontend/src/App.tsx

16 lines
268 B
TypeScript
Raw Normal View History

2021-09-06 10:17:50 +00:00
import React from 'react';
import './App.css';
2021-09-06 14:25:23 +00:00
import { Waveform } from './Waveform';
const audioContext = new AudioContext();
2021-09-06 10:17:50 +00:00
function App() {
return (
<div className="App">
2021-09-06 14:25:23 +00:00
<Waveform audioContext={audioContext}/>
2021-09-06 10:17:50 +00:00
</div>
);
}
export default App;