|
Ultima modificación |
Ver Log
|
Rev |
Autor |
Línea Nro. |
Línea |
5793 |
stevensc |
1 |
import React from 'react'
|
|
|
2 |
|
|
|
3 |
const GroupAttr = ({ title, children }) => {
|
|
|
4 |
return (
|
|
|
5 |
<div className="group-attr">
|
|
|
6 |
<div className="group-attr-header">
|
|
|
7 |
<h2>{title}</h2>
|
|
|
8 |
</div>
|
|
|
9 |
{children}
|
|
|
10 |
</div>
|
|
|
11 |
)
|
|
|
12 |
}
|
|
|
13 |
|
|
|
14 |
export default GroupAttr
|