1 2 3 4 5 6 7 8 9 10
import { h, Component } from 'preact' export default function Group (props){ return ( <div className='group'> <h3>{this.props.title}</h3> {this.props.children} </div> ) }