mirror of
https://github.com/ente-io/ente.git
synced 2025-06-01 07:05:34 +00:00
14 lines
352 B
TypeScript
14 lines
352 B
TypeScript
import { CenteredFlex } from "../../components/Container";
|
|
import { EnteLogo } from "../EnteLogo";
|
|
import NavbarBase from "./base";
|
|
|
|
export default function AppNavbar({ isMobile }) {
|
|
return (
|
|
<NavbarBase isMobile={isMobile}>
|
|
<CenteredFlex>
|
|
<EnteLogo />
|
|
</CenteredFlex>
|
|
</NavbarBase>
|
|
);
|
|
}
|