summaryrefslogtreecommitdiff
path: root/react/04-components/src/components/Navbar.jsx
blob: afa1f4d6e20ca8716705cc1b79b3d89c6a9fcb6c (plain)
1
2
3
4
5
6
7
8
9
import React from 'react'

const Navbar = () => {
  return (
    <div>Navbar</div>
  )
}

export default Navbar