how to console log component in react without using it code example
Example: console.log in jsx
const ConsoleLog = ({ children }) => {
console.log(children);
return false;
};
const ConsoleLog = ({ children }) => {
console.log(children);
return false;
};