Skip to content

Commit

Permalink
remove placeholder vars
Browse files Browse the repository at this point in the history
  • Loading branch information
sandrahoang686 committed Nov 7, 2024
1 parent a0046d6 commit 2259ed3
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions app/scripts/components/common/page-header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ interface PageHeaderProps {

export default function PageHeader(props: PageHeaderProps) {
const { mainNavItems, subNavItems, logo, linkProperties } = props;
console.log(`mainNavItems: `, mainNavItems)
console.log(`subNavItems: `, subNavItems)
const [expanded, setExpanded] = useState(false);
const onClick = (): void => setExpanded((prvExpanded) => !prvExpanded);

Expand All @@ -37,15 +35,6 @@ export default function PageHeader(props: PageHeaderProps) {
});
};

const testMenuItems = [
<a href='#linkOne' key='one'>
Simple link dog
</a>,
<a href='#linkTwo' key='two'>
Simple link cat
</a>
];

const CreateNavMenu = (navItems: NavItem[]) => {
return (
navItems.map((item) => {
Expand Down

0 comments on commit 2259ed3

Please sign in to comment.