20 lines
433 B
TypeScript
20 lines
433 B
TypeScript
import { Outlet } from "react-router-dom";
|
|
|
|
export default function RootLayout() {
|
|
return (
|
|
<>
|
|
<header>
|
|
<h1>✉ txt3 Voicemail</h1>
|
|
<span className="sp" />
|
|
<a href="/">Messages</a>
|
|
<a href="/contacts">Contacts</a>
|
|
<a href="/settings">Settings</a>
|
|
<a href="/logout">Log out</a>
|
|
</header>
|
|
<div className="wrap">
|
|
<Outlet />
|
|
</div>
|
|
</>
|
|
);
|
|
}
|