2023-01-07 19:06:04 +01:00
|
|
|
import "./App.css";
|
|
|
|
import Meeting from "./components/meeting/Meeting";
|
|
|
|
import Sidebar from "./components/sidebar/Sidebar";
|
2023-01-07 16:15:35 +01:00
|
|
|
|
|
|
|
function App() {
|
|
|
|
return (
|
|
|
|
<div className="App">
|
2023-01-07 19:06:04 +01:00
|
|
|
<Sidebar />
|
|
|
|
<Meeting />
|
2023-01-07 16:15:35 +01:00
|
|
|
</div>
|
2023-01-07 19:06:04 +01:00
|
|
|
);
|
2023-01-07 16:15:35 +01:00
|
|
|
}
|
|
|
|
|
2023-01-07 19:06:04 +01:00
|
|
|
export default App;
|