blob: 8b74e366e2802ae3a11513e4e6de26c17cc235cb (
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'>
{this.props.title && <h3>{this.props.title}</h3>}
{this.props.children}
</div>
)
}
|