initial jsx support

This commit is contained in:
laura 2025-11-01 14:50:30 -03:00
parent 2301c5d631
commit 11be5e979c
Signed by: w
GPG key ID: BCD2117C99E69817
7 changed files with 77 additions and 30 deletions

13
src/app.tsx Normal file
View file

@ -0,0 +1,13 @@
/**
* Copyright (c) 2025 xwra
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
export default function App() {
return (
<>
<h1>JSX Page</h1>
<p class="oh hey">meowing chunk by chunk</p>
</>
);
}