pub trait Component<T: Props, V, S> { // Required method fn create(self, props: T) -> V; }
A trait that is automatically implemented by all components.
Instantiate the component with the given props and reactive scope.