Debug

Slideshow Auto

This is how to use the <CH.Slideshow> component. Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, quia! Quidem, quisquam.

src/index.js
import React from "react"
import ReactDOM from "react-dom"

const app = React.createElement(
"h1",
{ style: { color: "teal" } },
"Hello React"
)
const app = <h1 style={{ color: "teal" }}>Hello React</h1>

ReactDOM.render(app, document.getElementById("root"))

But instead of using createElement directly you can use JSX.