Skip to content

Commit

Permalink
chore: Add back class name support for section
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed Jun 23, 2020
1 parent 7225b80 commit 846d903
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Section.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import styles from './Section.module.scss';
const Section = ({ backgroundBanner, children, className }) => {
return (
<div
className={cx(styles.section, {
className={cx(styles.section, className, {
[styles.backgroundBanner]: backgroundBanner,
})}
>
Expand Down

0 comments on commit 846d903

Please sign in to comment.