This commit is contained in:
2025-03-02 17:15:58 +00:00
commit e4253e6de2
26 changed files with 1806 additions and 0 deletions

14
src/App.tsx Normal file
View File

@@ -0,0 +1,14 @@
import { Chatters } from "@components/Chatters.tsx";
import { Contexts } from "@contexts/Contexts.tsx";
import type { Component } from "solid-js";
export const App: Component = () => {
return (
<main class="container">
<h1>Current Chatters</h1>
<Contexts>
<Chatters />
</Contexts>
</main>
);
};