Created
January 29, 2019 22:55
-
-
Save tbranyen/b5cf2537fa5e1c1268e44c99699dea73 to your computer and use it in GitHub Desktop.
A Console component for React
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Console = props => { | |
for (let method in console) { | |
if (method in props) { | |
console[method](props[method]); | |
} | |
} | |
return <></>; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment