mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-19 08:26:07 +00:00
31 lines
682 B
TypeScript
31 lines
682 B
TypeScript
"use client";
|
|
|
|
import SetupPage from "./SetupPage";
|
|
import Loading from "@/components/Loading";
|
|
|
|
import { useState, useEffect } from "react";
|
|
import { useRouter } from "next/navigation";
|
|
import axios from "axios";
|
|
|
|
export default function Setup() {
|
|
const router = useRouter();
|
|
const [loading, setLoading] = useState(true);
|
|
|
|
useEffect(() => {
|
|
const init = async () => {
|
|
const response = await axios.get("/api/user/init");
|
|
if (response.data.message !== "No users found") {
|
|
router.push("/");
|
|
} else {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
init();
|
|
}, []);
|
|
|
|
if (loading) {
|
|
return <Loading />;
|
|
} else {
|
|
return <SetupPage />;
|
|
}
|
|
} |