1mod derive_into_layout;
23use proc_macro::TokenStream;
45/// #[derive(IntoLayout)] is used to create a Layout with outlet.
6#[proc_macro_derive(IntoLayout)]
7pub fn derive_into_layout(input: TokenStream) -> TokenStream {
8 derive_into_layout::derive_into_layout(input)
9}