1 2 3 4 5 6 7 8 9 10 11
// SPDX-License-Identifier: MIT //! Experimental `view!` macro for declarative widget trees. //! //! Enabled via the optional `view` feature flag. #[macro_export] macro_rules! view { ($($tt:tt)*) => { $($tt)* }; }