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

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

export function App({ children }: PropsWithChildren<{}>) {
  return <>{children}</>;
}