mount method
Implementation
@override
void mount(DCFComponentNode? parent) {
this.parent = parent;
// Ensure the component has rendered
final node = renderedNode;
// Mount the rendered content
node.mount(this);
}
@override
void mount(DCFComponentNode? parent) {
this.parent = parent;
// Ensure the component has rendered
final node = renderedNode;
// Mount the rendered content
node.mount(this);
}