ยฉ 2026 Hedgehog Software, LLC
<App>
<>...</>
const App = (props: { children?: JSXElement}) => ( <div class="standard-grid"> <Menu /> {props.children} </div> );
const App = (props: { children?: JSXElement}) => ( <> <Menu /> {props.children} <> );
<Router root={App}>...