None of the event listener working #9607
Unanswered
Mubashir1234
asked this question in
Q&A
Replies: 1 comment
-
Not sure what happened to your code sample, but it's illegible. Can you create a simple repro on ⚡️ StackBlitz https://remix.new |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
hi there I am trying to listen an events on various platforms. but none of the event listeners are listing on the remix I had already imported the Script tagin body but I still the same issue.
here is one of the example:
this is my root.TSX file
import {
Links,
LiveReload,
Meta,
Outlet,
Scripts,
ScrollRestoration,
} from "@remix-run/react";
import styles from "./input.css"
import { LinksFunction } from "@remix-run/node";
export function Layout({ children }: { children: React.ReactNode }) {
return (
<script src="http:localhost:5173" async></script>
);
}
export default function App() {
return(
<>
;
</>
)
Beta Was this translation helpful? Give feedback.
All reactions