Created the PowerItemGroup.jsx

This commit is contained in:
Mathias Wagner 2023-05-30 18:11:49 +02:00
parent 74b2d12e0d
commit d168bb7f44
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

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