Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
import React from "react";
import image1 from "../../../img/photo-1602700986195-61c063fe117f.jpeg";
import image2 from "../../../img/photo-1604276919965-7ba5dab422f4.jpeg";
import Glider from "../glider";
import styles from "./style.scss";
const Component = () => (
<div className={styles.container}>
<h1 className={styles.title}>Page 1</h1>
<Glider hasDots slidesToShow={1}>
<div className={styles.slide}>
<img className={styles.image} src={image1} alt="1" />
</div>
<div className={styles.slide}>
<img className={styles.image} src={image2} alt="2" />
</div>
</Glider>
</div>
);
export default Component;