UNPKG

react-presentable

Version:

This is a library to create slideshows using react

24 lines (21 loc) 408 B
import React from 'react' const Slide = ({ children, style, className }) => { return ( React.createElement( 'div', { style: { ...style, flex: 1, flexDirection: 'column', display: 'flex', justifyContent: 'center', alignItems: 'center' }, className }, children ) ) } export default Slide