Skip to content
This repository has been archived by the owner on Dec 15, 2024. It is now read-only.

Commit

Permalink
remove console.log (#335)
Browse files Browse the repository at this point in the history
closes #334
  • Loading branch information
vladpalkanov authored and Garet McKinley committed Nov 29, 2019
1 parent 47be2d7 commit 07ecaf0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,9 @@ const cssProperties = {
*/
export const generateStyles = props => {
const cssProps = [];
console.log(props);
Object.keys(props).map(prop => {
if (cssProperties[prop]) cssProps.push(cssProperties[prop](props[prop]));
});
console.log(cssProps);
return cssProps;
};

Expand Down

0 comments on commit 07ecaf0

Please sign in to comment.