9 lines
179 B
JavaScript
9 lines
179 B
JavaScript
import React from 'react'
|
|
import styles from './topbar.module.css'
|
|
|
|
export default function TopBar() {
|
|
return (
|
|
<div className={styles.topBar}>search comes here</div>
|
|
)
|
|
}
|