Remove console log

This commit is contained in:
Mitchell McCaffrey 2020-05-10 19:48:27 +10:00
parent f2ef63b36f
commit ba17aec263

View File

@ -7,7 +7,6 @@ function Paragraph(props) {
}
function Heading({ level, ...props }) {
console.log(props);
const fontSize = level === 1 ? 5 : level === 2 ? 3 : 1;
return (
<Text