Changed from astro to pure solidjs

This commit is contained in:
Patrick Alvin Alcala 2025-09-23 18:38:13 +08:00
parent 3203e91c5a
commit e85dc60101
76 changed files with 2281 additions and 3843 deletions

View file

@ -1,7 +1,8 @@
import './Table.sass'
import { createSignal, onMount, Index, For } from 'solid-js'
import { Modal } from '../../components'
import { createSignal } from 'solid-js'
import { ofetch } from 'ofetch'
import { Button } from '../../../fwt'
// import { Button } from '../../components'
const api = import.meta.env.BACKEND
@ -77,6 +78,12 @@ export default () => {
</tr> */}
</tbody>
</table>
<div id="modal" style="display: none">
<Modal background="rgba(0,0,0,0.5)">
<h1>SAMPLE</h1>
</Modal>
</div>
</>
)
}