gitfoss-fork-fork | 308c8b3399d857ca87e3c7e5afe918c5041867c1 | 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}</>;
}