Skip to content

Commit

Permalink
feat: navbar imported to app
Browse files Browse the repository at this point in the history
  • Loading branch information
ammarrqureshi committed Jan 5, 2024
1 parent 1664af1 commit b06404e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { FormContextType, ThemeContextType } from "./types/types.tasks";
import { FormContext } from "./contexts/FormContext";
import { ThemeContext } from "./contexts/ThemeContext";
import { Container } from "./components/UI/Container";
import { Navbar } from "./components/Navbar";

const App = () => {
const { isEditing, setIsEditing } = useContext(
Expand All @@ -24,6 +25,8 @@ const App = () => {
Also send me email here So we can discuss project there:<br></br><br></br>
[email protected]
</h1> */}

<Navbar></Navbar>
<Button
className="group fixed top-0 right-0"
Type="icon"
Expand Down
1 change: 1 addition & 0 deletions src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export const Navbar = () => {
return (
<div className="w-full bg-orange-500">
<img src="" />
hello
</div>
)
}

0 comments on commit b06404e

Please sign in to comment.