one
Version:
One is a new React Framework that makes Vite serve both native and web.
10 lines (8 loc) • 361 B
text/typescript
import type { OneRouter } from '../interfaces/router'
export function assertIsReady(navigationRef: OneRouter.NavigationRef) {
if (!navigationRef.isReady()) {
throw new Error(
'Attempted to navigate before mounting the Root Layout component. Ensure the Root Layout component is rendering a Slot, or other navigator on the first render.'
)
}
}