summaryrefslogtreecommitdiffstats
path: root/client/js/app/src/app/components/layout/layout.jsx
blob: f0f5a0594c00706968a94af145d8c6c390d169db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import React from 'react';
import { AppShell } from '@mantine/core';
import { Header } from 'app/components/layout/header';

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