wf-radio/frontend/src/components/NavBar/navbar.jsx

16 lines
368 B
React
Raw Normal View History

2025-05-12 19:31:19 +02:00
import { h } from 'preact' // Necessary ?
import styles from './navbar.module.css'
function NavBar({ children, className, ...rest}) {
return (
<div
className={styles.navbar}
{...rest} // Allow passing other props like 'disabled', 'type', etc.
>
{children}
</div>
)
}
export default NavBar;