Files
Work/Frontend/src/app.tsx
2026-06-18 16:58:31 +01:00

13 lines
281 B
TypeScript

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