SolidJSS
SolidJSโ€ข4y agoโ€ข
2 replies
Revxrsal

route not rendering sometimes

o/ so I have two routes: the index one (home) and the /settings one. here's my root.tsx: https://pastebin.com/K8ykT5C2
here's my settings.tsx:
export default function Settings() {
    return (
        <main>
            <h1>Settings</h1>
        </main>
    )
}

it renders the buttons in the root.tsx only.
i have a feeling it's related to me using window.location.href = "/settings" instead of the <A href="/settings"> tag used in the template
image.png
Was this page helpful?