Created the PowerItemGroup.jsx

This commit is contained in:
2023-05-30 18:11:49 +02:00
parent 74b2d12e0d
commit d168bb7f44

View File

@ -0,0 +1,8 @@
import "./styles.sass";
export const PowerItemGroup = ({children, name}) => (
<div className="power-item-group">
<p>{name}</p>
{children}
</div>
)