[refactor] split up handler classes

This commit is contained in:
Janis
2023-06-29 00:56:33 +02:00
parent 9382572bd7
commit d1dca713aa
8 changed files with 3156 additions and 600 deletions

View File

@@ -1,10 +1,10 @@
/* eslint-disable react-hooks/exhaustive-deps */
import "@styles/App.scss";
import { TS5Connection } from "./teamspeak5Handler";
import { IChannel, IClient, IConnection } from "interfaces/teamspeak";
import { useEffect, useState } from "react";
import Viewer from "./Viewer";
import { useSearchParams } from "react-router-dom";
import { TS5Connection } from "handlers/teamspeak/connectionHandler";
export default function App() {
const [searchParams] = useSearchParams();