mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-21 17:09:09 +01:00
10 lines
153 B
TypeScript
10 lines
153 B
TypeScript
import { Outlet } from 'react-router-dom';
|
|
|
|
export function Layout() {
|
|
return (
|
|
<div className="w-full h-full">
|
|
<Outlet />
|
|
</div>
|
|
);
|
|
}
|