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

import AppRouter from "./islands/AppRouter";

export function App({ children }: PropsWithChildren<{}>) {
  return (
    <>
      <div data-islandid={`${AppRouter.name}$$0`}>
        <AppRouter />
      </div>
      {children}
    </>
  );
  return <>{children}</>;
}