import { h } from 'preact';
import PropTypes from 'prop-types';
const SlideContent = ({ imageSource, imageAlt, content, style = { textAlign: 'center' } }) => (
{content}
Let's get started...
);
SlideContent.propTypes = {
imageSource: PropTypes.string,
imageAlt: PropTypes.string,
content: PropTypes.string,
style: PropTypes.object,
};
export default SlideContent;