UNPKG

hanav

Version:

A React Navigation Menu Component Library.

9 lines (7 loc) 176 B
import React from "react"; export default function Group({ children, ...otherProps }) { return <div {...otherProps}> {children} </div>; } Group.displayName = "Group";