aboutsummaryrefslogtreecommitdiffstats
path: root/client/js/app/src/app/components/layout/layout.jsx
blob: 2cbf9af6aaaf8a197b462404ebbb6a6314186631 (plain) (blame)
1
2
3
4
5
6
7
8
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
import React from 'react';
import { AppShell } from '@mantine/core';
import { Header } from 'app/components/layout/header';

export function Layout({ children }) {
  return <AppShell header={<Header />}>{children}</AppShell>;
}