13 lines
281 B
TypeScript
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;
|