Commit 7758ffcc authored by Chunchi Che's avatar Chunchi Che

use new mat

parent eb4a3e06
Pipeline #21427 passed with stages
in 15 minutes and 4 seconds
export * from "./Mat"; import { Mat } from "./Mat";
export default Mat;
...@@ -7,6 +7,7 @@ const Login = React.lazy(() => import("./Login")); ...@@ -7,6 +7,7 @@ const Login = React.lazy(() => import("./Login"));
const WaitRoom = React.lazy(() => import("./WaitRoom")); const WaitRoom = React.lazy(() => import("./WaitRoom"));
const Mora = React.lazy(() => import("./Mora")); const Mora = React.lazy(() => import("./Mora"));
const NeosDuel = React.lazy(() => import("./Duel/Main")); const NeosDuel = React.lazy(() => import("./Duel/Main"));
const Mat = React.lazy(() => import("./Duel/PlayMat2"));
export default function () { export default function () {
return ( return (
...@@ -32,7 +33,7 @@ export default function () { ...@@ -32,7 +33,7 @@ export default function () {
path="/duel/:player/:passWd/:ip" path="/duel/:player/:passWd/:ip"
element={ element={
<Suspense fallback={<Loading />}> <Suspense fallback={<Loading />}>
<NeosDuel /> <Mat />
</Suspense> </Suspense>
} }
/> />
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment