create method
Create a component instance with the given type, props and children
Implementation
DCFElement create(String type, Map<String, dynamic> props, List<DCFComponentNode> children) {
final factory = _factories[type];
if (factory == null) {
throw Exception('Component factory not found: $type');
}
return factory(props, children);
}