summaryrefslogtreecommitdiff
path: root/app/client/common/group.component.js
blob: 5dc9ddf1782ecf4de0fa6f96434f31b1d4ffe90d (plain)
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>
  )
}