//! The fragment component
use crateRender;
use ;
/// A top-level root component to combine a same-level components
/// in a RSX fashion
///
/// ```rust
/// # #![feature(proc_macro_hygiene)]
/// # use pretty_assertions::assert_eq;
/// # use render_macros::html;
/// let result = html! {
/// <>
/// <a />
/// <b />
/// </>
/// };
/// assert_eq!(result, "<a/><b/>");
/// ```