Skip to main content

react_rs_dom/
lib.rs

1//! # react-rs-dom
2//!
3//! Server-side rendering for react.rs components.
4//!
5//! This crate provides [`render_to_string()`] which converts a component tree
6//! into HTML string output for server-side rendering (SSR).
7//!
8//! For client-side rendering and hydration, use `react-rs-wasm` instead.
9
10mod render;
11
12pub use render::{render_to_string, RenderOutput};