mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-21 21:05:09 +00:00
* fix: move suspense boundary closer to corresponding pages * fix: pre-resolve the client via singleton to speed up the clientPromise * feat: apply theme background faster with plain script * chore: update biome version * feat: make rpc client persist promise with useMemo and remove loading text * fix: replace dvh with vh * fix: replace dvh with vh in create graph
11 lines
274 B
TypeScript
11 lines
274 B
TypeScript
import { type FC, Suspense } from 'react'
|
|
import { WorkflowsPage } from './WorkflowsPage'
|
|
|
|
export const WorkflowsPageWrapper: FC = () => {
|
|
return (
|
|
<Suspense fallback={<div className="h-screen w-screen bg-background" />}>
|
|
<WorkflowsPage />
|
|
</Suspense>
|
|
)
|
|
}
|