Skip to content

Instantly share code, notes, and snippets.

@codewithbernard
Created December 26, 2021 07:50
Show Gist options
  • Select an option

  • Save codewithbernard/99a718eca06f6382bddfbdc11b8d135e to your computer and use it in GitHub Desktop.

Select an option

Save codewithbernard/99a718eca06f6382bddfbdc11b8d135e to your computer and use it in GitHub Desktop.
import styles from "./Background.module.css";
import background from "../../assets/img/background.png";
const Background = () => {
return (
<article
className={styles.article}
style={{ backgroundImage: `url(${background})` }}
>
<h1 className={styles.header}>React Is Awesome</h1>
</article>
);
};
export default Background;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment