{"record":{"id":"1bb26acb7e62b90b","repo":"DioxusLabs/dioxus","slug":"must-return-a-dioxus-core-element","errorCode":null,"errorMessage":"Must return a <dioxus_core::Element>","messagePattern":"Must return a <dioxus_core::Element>","errorType":"validation","errorClass":"syn::Error","httpStatus":null,"severity":"error","filePath":"packages/core-macro/src/component.rs","lineNumber":461,"sourceCode":"                return None;\n            }\n\n            let res = crate::utils::DeprecatedAttribute::from_meta(&attr.meta);\n\n            match res {\n                Err(e) => panic!(\"{}\", e.to_string()),\n                Ok(v) => Some(v),\n            }\n        }),\n        input_arg_doc: arg_doc,\n    })\n}\n\nfn validate_component_fn(item_fn: &ItemFn) -> Result<()> {\n    // Do some validation....\n    // 1. Ensure the component returns *something*\n    if item_fn.sig.output == ReturnType::Default {\n        return Err(Error::new(\n            item_fn.sig.output.span(),\n            \"Must return a <dioxus_core::Element>\".to_string(),\n        ));\n    }\n\n    // 2. make sure there's no lifetimes on the component - we don't know how to handle those\n    if item_fn.sig.generics.lifetimes().count() > 0 {\n        return Err(Error::new(\n            item_fn.sig.generics.span(),\n            \"Lifetimes are not supported in components\".to_string(),\n        ));\n    }\n\n    // 3. we can't handle async components\n    if item_fn.sig.asyncness.is_some() {\n        return Err(Error::new(\n            item_fn.sig.asyncness.span(),\n            \"Async components are not supported\".to_string(),","sourceCodeStart":443,"sourceCodeEnd":479,"githubUrl":"https://github.com/DioxusLabs/dioxus/blob/393d190a801ccb441d41923e232289b4f8a5c669/packages/core-macro/src/component.rs#L443-L479","documentation":"Error \"Must return a <dioxus_core::Element>\" thrown in DioxusLabs/dioxus.","triggerScenarios":"Thrown at packages/core-macro/src/component.rs:461 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"393d190a801ccb441d41923e232289b4f8a5c669","analyzedAt":"2026-08-16T11:27:45.815Z","schemaVersion":2},"datasetVersion":"2026-08-16T13:17:31.715Z"}