gitfoss-fork | 2dd06002fab9bd8f9e89f10d316159713169d8e3 | app/App.tsx ∙ GitFOSS
~app/App.tsx
.ts
TypeScript
(application/typescript)
import React, { PropsWithChildren } from "react";
import RootAppRouter from "./routes";

// import { AppRoute } from "./routes.defs";
// import HomeView from "./views/HomeView";

export function App({ children }: PropsWithChildren<{}>) {
  return (
    <>
      <RootAppRouter server={null as any} />
      {children}
    </>
  );
  return <>{children}</>;
}