mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-06-05 09:14:02 -04:00
11 lines
292 B
TypeScript
11 lines
292 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import { BaseAppBar } from '../../../components/layout/app-bar/base-app-bar'
|
|
import React from 'react'
|
|
|
|
export default function AppBar() {
|
|
return <BaseAppBar />
|
|
}
|