mirror of
https://github.com/ente-io/ente.git
synced 2025-05-24 20:19:17 +00:00
19 lines
454 B
TypeScript
19 lines
454 B
TypeScript
import React from "react";
|
|
import { CenteredFlex } from "../../components/Container";
|
|
import { EnteLogo } from "../EnteLogo";
|
|
import NavbarBase from "./base";
|
|
|
|
interface AppNavbarProps {
|
|
isMobile: boolean;
|
|
}
|
|
|
|
export const AppNavbar: React.FC<AppNavbarProps> = ({ isMobile }) => {
|
|
return (
|
|
<NavbarBase isMobile={isMobile}>
|
|
<CenteredFlex>
|
|
<EnteLogo />
|
|
</CenteredFlex>
|
|
</NavbarBase>
|
|
);
|
|
};
|