You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
431 B

import React from 'react';
import { DndProvider } from 'react-dnd';
import { HTML5Backend } from 'react-dnd-html5-backend';
import MainWindow from './components/MainWindow';
import { ProvideAuth } from './lib/useAuth';
import { ProvideIntegrations } from './lib/integration/useIntegrations';
function App() {
return (
<DndProvider backend={HTML5Backend}>
<MainWindow />
</DndProvider>
);
}
export default App;