Fixed missing default return in map

This commit is contained in:
Camerin Figueroa 2021-11-01 17:45:07 -04:00
parent 21378184ff
commit bf851cceb2
1 changed files with 2 additions and 0 deletions

View File

@ -45,6 +45,8 @@ const Article = ({article}) => {
return <div className="code" key={i}>{output[i]}</div>;
} else {
return <div></div>;
}
});