aboutsummaryrefslogtreecommitdiffstats
path: root/client/js/app/src/app/components/layout/layout.jsx
blob: 532a9ce3630be16766c913a10f8f00280ea0b3fe (plain) (blame)
1
2
3
4
5
6
7
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>;
}