feat: finish reimplementation of server list

This commit is contained in:
Paul Makles
2022-05-27 19:57:41 +01:00
parent 959c084727
commit a9e4839727
7 changed files with 366 additions and 185 deletions

View File

@@ -2,15 +2,15 @@ import { Route, Switch } from "react-router-dom";
import { lazy, Suspense } from "preact/compat";
import { Masks } from "@revoltchat/ui";
import ErrorBoundary from "../lib/ErrorBoundary";
import FakeClient from "../lib/FakeClient";
import Context from "../context";
import { CheckAuth } from "../context/revoltjs/CheckAuth";
import Masks from "../components/ui/Masks";
import Preloader from "../components/ui/Preloader";
import Invite from "./invite/Invite";
const Login = lazy(() => import("./login/Login"));