mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-16 14:06:49 +01:00
11 lines
152 B
TypeScript
11 lines
152 B
TypeScript
import {Outlet} from 'react-router-dom';
|
|
|
|
|
|
export function Layout() {
|
|
return (
|
|
<div className="w-full h-full">
|
|
<Outlet />
|
|
</div>
|
|
);
|
|
}
|