render 0.3.1

A safe and simple template engine with the ergonomics of JSX
Documentation
//! The fragment component

use crate::Render;
use std::fmt::{Result, Write};

/// 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/>");
/// ```
#[derive(Debug)]
pub struct Fragment<T: Render> {
    pub children: T,
}

impl<T: Render> Render for Fragment<T> {
    fn render_into<W: Write>(self, writer: &mut W) -> Result {
        self.children.render_into(writer)
    }
}