hedgedoc/frontend/src/app/(editor)/@appBar/not-found.tsx
Tilman Vatteroth b3fb1bbf30 fix: extract app bar into layout slot
Signed-off-by: Tilman Vatteroth <git@tilmanvatteroth.de>
2023-09-05 12:41:26 +02:00

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 />
}