Files
Work/Frontend/src/app.tsx
2026-06-14 15:21:02 +01:00

12 lines
242 B
TypeScript

// Path: Frontend/src/app.tsx
import type { JSX } from "solid-js";
import { AppShell } from "./components/shell/AppShell/AppShell";
import "./styles/main.scss";
const App = (): JSX.Element => {
return <AppShell />;
};
export default App;