mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-08 06:15:43 +03:00
15 lines
348 B
JavaScript
15 lines
348 B
JavaScript
|
|
import React from 'react';
|
||
|
|
import NavbarLayout from '@theme/Navbar/Layout';
|
||
|
|
import NavbarContent from '@theme/Navbar/Content';
|
||
|
|
import LanguageAlert from '../../components/LanguageAlert';
|
||
|
|
|
||
|
|
export default function Navbar() {
|
||
|
|
return (
|
||
|
|
<>
|
||
|
|
<NavbarLayout>
|
||
|
|
<NavbarContent />
|
||
|
|
</NavbarLayout>
|
||
|
|
<LanguageAlert />
|
||
|
|
</>
|
||
|
|
);
|
||
|
|
}
|