diff --git a/src/components/Header.tsx b/src/components/Header.tsx index ca2af2c..e5b027f 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -10,9 +10,9 @@ export function Header (){ - + {/* */} - + diff --git a/src/components/MenuItem.tsx b/src/components/MenuItem.tsx index 40ca6ab..581b9cb 100644 --- a/src/components/MenuItem.tsx +++ b/src/components/MenuItem.tsx @@ -1,16 +1,17 @@ type Props = { name: string; - isSelected: boolean; - onClick: () => void; + isSelected?: boolean; + isNotSelected?: boolean; + onClick?: () => void; } -export function MenuItem ({name, isSelected, onClick}: Props) { +export function MenuItem ({name, isSelected, isNotSelected, onClick}: Props) { return( // {name} diff --git a/src/components/SectionHero.tsx b/src/components/SectionHero.tsx index 79e0392..7f367df 100644 --- a/src/components/SectionHero.tsx +++ b/src/components/SectionHero.tsx @@ -3,7 +3,7 @@ import { Container } from "./container"; export function SectionHero() { return ( - + @@ -27,7 +27,7 @@ export function SectionHero() { - + - + {/* - + */}