import React, { useState } from 'react';
import Arrow1 from './imgs/arrow.svg';
function MobileNavigation() {
return
Mobile Navigation
;
}
function DesktopNavigation() {
return (
);
}
export default function Navigation({ isMobile }: { isMobile: boolean }) {
if (isMobile) {
return ;
} else {
return ;
}
}