Slideshow

Slideshow with preview

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

src/index.js

_10
import React from 'react';
_10
import ReactDOM from 'react-dom';
_10
_10
const app = React.createElement(
_10
'h1',
_10
{ style: { color: 'teal' } },
_10
'Hello React'
_10
);
_10
_10
ReactDOM.render(app, document.getElementById('root'));

React provides a createElement function to declare what we want to render to the DOM