4fa4f13558
Co-authored-by: iamlukethedev <iamlukethedev@users.noreply.github.com>
14 lines
358 B
TypeScript
14 lines
358 B
TypeScript
import { Suspense } from "react";
|
|
import { AgentStoreProvider } from "@/features/agents/state/store";
|
|
import { OfficeScreen } from "@/features/office/screens/OfficeScreen";
|
|
|
|
export default function OfficePage() {
|
|
return (
|
|
<AgentStoreProvider>
|
|
<Suspense fallback={null}>
|
|
<OfficeScreen />
|
|
</Suspense>
|
|
</AgentStoreProvider>
|
|
);
|
|
}
|