mirror of
https://github.com/umami-software/umami.git
synced 2026-02-09 23:27:12 +01:00
13 lines
244 B
TypeScript
13 lines
244 B
TypeScript
import { Metadata } from 'next';
|
|
import { App } from './App';
|
|
|
|
export default function ({ children }) {
|
|
return <App>{children}</App>;
|
|
}
|
|
|
|
export const metadata: Metadata = {
|
|
title: {
|
|
template: '%s | Umami',
|
|
default: 'Umami',
|
|
},
|
|
};
|