Coming soon
+return null +return <>> + +// Also stubs - empty handlers: +onClick={() => {}} +onChange={() => console.log('clicked')} +onSubmit={(e) => e.preventDefault()} // Only prevents default, does nothing +``` + +**Wiring check:** + +```bash +# Component imports what it needs +grep -E "^import.*from" "$component_path" + +# Props are actually used (not just received) +# Look for destructuring or props.X usage +grep -E "\{ .* \}.*props|\bprops\.[a-zA-Z]+" "$component_path" + +# API calls exist (for data-fetching components) +grep -E "fetch\(|axios\.|useSWR|useQuery|getServerSideProps|getStaticProps" "$component_path" +``` + +**Functional verification (human required):** + +- Does the component render visible content? +- Do interactive elements respond to clicks? +- Does data load and display? +- Do error states show appropriately? + +Message 1
+Message 2
+We're sorry for the inconvenience. Please refresh the page.
+ +