@rixx-ui/react/server.
@rixx-ui/react/styles.css export and that the package build completed. If an
SSR build evaluates browser-only renderer dependencies, keep RUIRenderer in a
client entry and use only the server subpath from server modules.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Pre-alpha: npm packages are not published yet. APIs and documentation may change. View release status.
Use Rixx UI in a Vite React application with client rendering and optional server-side bundling.
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import { RUIRenderer } from "@rixx-ui/react";
import "@rixx-ui/react/styles.css";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<RUIRenderer streamStatus="complete">{source}</RUIRenderer>
</StrictMode>,
);
@rixx-ui/react/server.
import { createRUIInstructions } from "@rixx-ui/react/server";
const instructions = createRUIInstructions(userPrompt);
@rixx-ui/react/styles.css export and that the package build completed. If an
SSR build evaluates browser-only renderer dependencies, keep RUIRenderer in a
client entry and use only the server subpath from server modules.