Skip to content

Instantly share code, notes, and snippets.

@codewithbernard
Created December 26, 2021 07:55
Show Gist options
  • Save codewithbernard/ceb88a002861ddeff8cbd5fd54ac0a0f to your computer and use it in GitHub Desktop.
Save codewithbernard/ceb88a002861ddeff8cbd5fd54ac0a0f to your computer and use it in GitHub Desktop.
import styles from "./Picture.module.css";
import background from "../../assets/img/background.png";
const Picture = () => {
return (
<article className={styles.article}>
<picture className={styles.picture}>
<source media="(min-width: 0px)" srcSet={background} />
<img src={background} alt="background" />
</picture>
<h1 className={styles.header}>React Is Awesome</h1>
</article>
);
};
export default Picture;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment