Skip to content

Commit

Permalink
Rename Navbar to Header
Browse files Browse the repository at this point in the history
  • Loading branch information
kkosiorowska committed Dec 6, 2023
1 parent 1973e44 commit 05e1a95
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dapp/src/DApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ import { ChakraProvider, Flex } from "@chakra-ui/react"
import { useDetectThemeMode } from "./hooks"
import theme from "./theme"
import { LedgerWalletAPIProvider, WalletContextProvider } from "./contexts"
import Navbar from "./components/Navbar"
import Header from "./components/Header"
import Overview from "./components/Overview"

function DApp() {
useDetectThemeMode()

return (
<Flex p={6} gap={2} direction="column">
<Navbar />
<Header />
<Overview />
</Flex>
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import ConnectWallet from "./ConnectWallet"
import { ChevronRight } from "../../static/icons"
import { USD } from "../../constants"

export default function Navbar() {
export default function Header() {
return (
<Flex gap={4} direction="column">
<Flex justifyContent="end">
Expand Down

0 comments on commit 05e1a95

Please sign in to comment.