Loading
API REFERENCE
The Outlet React component is a special component that is used to render the content of the current page. It is used in the Layout component to render the content of the current page.
tsximport { LayoutComponent, Outlet } from "rasengan"; const AppLayout: LayoutComponent = () => { return ( <div> <header> <h1>Header</h1> </header> <main> <Outlet /> </main> </div> ); }; AppLayout.path = "/"; export default AppLayout;