dxc 1.0.0

A concise, modern dioxus component library
Documentation
1
2
3
4
5
6
7
8
9
use super::props::TransitionProps;
use dioxus::prelude::*;

#[component]
pub fn DxcTransition(props: TransitionProps) -> Element {
    rsx! {
        {props.children}
    }
}