feat(api): keep render_html out of prelude

Keep the beginner prelude on the short render helper while leaving render_html/lower_html as explicit compatibility aliases.

req: dx/006
This commit is contained in:
slhx agent
2026-06-02 03:15:29 +02:00
parent a6c88b9226
commit 73836f3742
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -94,7 +94,7 @@ pub mod prelude {
CssClasses, Effect, EventName, Form, FormModel, FormValue, Handle, IntoEffect, KeyedSlot,
ParamName, SafeHtml, Slot,
};
pub use crate::{render, render_html};
pub use crate::render;
pub use slhx_derive::{app, component, form, handler, surface};
}