summaryrefslogtreecommitdiff
path: root/web/src/root.js
blob: ce1104b98cac1478b607cafc3927103187484e1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import React from "react";
import { Outlet } from "react-router";

const Root = () => (
    <main className="container-fluid">
        <Outlet />
    </main>
)

export default Root;