16 lines
417 B
TypeScript
16 lines
417 B
TypeScript
import {Link, Outlet} from "react-router-dom";
|
|
import React from "react";
|
|
|
|
export function MainLayout() {
|
|
return (
|
|
<>
|
|
<div className="header">
|
|
<Link to="/dashboard" className="menu-button">☰</Link>
|
|
<h1 className="logo">Pro-Fi Test</h1>
|
|
</div>
|
|
<div className="content">
|
|
<Outlet />
|
|
</div>
|
|
</>
|
|
);
|
|
} |