This is a library to create slideshows using react
npm install react-presentableReact Presentable is a lightweight zero-dependency module to create slideshows inside React. The slides can render whatever react code you like.
Use the arrow keys or left mouse button to navigate between slides.

``sh`
npm install --save react-presentable
`js
import Presentation, { Slide } from 'react-presentable'
// ...
return (
theme={{ backgroundColor: 'violet', textColor: '#fff' }}
>
Slide 1
Slide 2
)
`
- optional
- type: ReactNode
The slides in the presentation.
- optional
- type: CSSProperties
Override styling of the presentation.
- optional
- type: PresentationTheme
The theme of your presentation.
backgroundColor?: string
textColor?: string
- optional
- type: booleantrue
- default:
Display a animated progress bar or not.
- optional
- type: booleantrue
- default:
Display left and right arrows for changing slides.
- optional
- type: CSSProperties`
The CSS class of the presentation element