// The minimal valid app. render() is called once at the top level and the root // element MUST be - anything else throws. takes layout props // (it is a flex container), so children can be centered here directly. import { render } from "@solidrt/core" function App() { return ( Hello SolidRT ) } render(() => )