For instance:
export default function SomeComponent(){
return(
<SomeOtherComponent/>
);
console.log(<SomeOtherComponent/>)
}
That will log information about the component itself (typeof, etc.) but not the value of say, an autocomplete search result based on user input.
Top comments (0)