import { h, Component } from 'preact' import { connect } from 'react-redux' export default class Param extends Component { constructor(props){ super(props) } render() { return (
{this.props.title} {this.props.children}
) } }