(fix) ui - build error

This commit is contained in:
ishaan-jaff 2024-01-29 08:36:04 -08:00
parent 50044f090f
commit 85e69a2cd2

View file

@ -1,12 +1,14 @@
import React from "react";
import React, { Suspense } from "react";
import Navbar from "../components/navbar";
import UserDashboard from "../components/user_dashboard";
const CreateKeyPage = () => {
return (
<Suspense fallback={<div>Loading...</div>}>
<div className="flex min-h-screen flex-col items-center">
<Navbar />
<UserDashboard />
</div>
</Suspense>
);
};