import { h, Component } from 'preact'; import PropTypes from 'prop-types'; import Navigation from './Navigation'; import { updateOnboarding } from '../utilities'; class IntroSlide extends Component { constructor(props) { super(props); this.onSubmit = this.onSubmit.bind(this); } componentDidMount() { updateOnboarding('intro slide'); } onSubmit() { const { next } = this.props; next(); } render() { const { prev } = this.props; return (