Refactor, move all pages to separate folder

This commit is contained in:
Guntis Smaukstelis
2025-03-14 11:31:47 +02:00
parent 968a06c0f0
commit a2d1608cb0
54 changed files with 95 additions and 104 deletions
@@ -0,0 +1,12 @@
import { Component } from 'solid-js'
import styles from './spinner.module.css'
export const LoadingSpinner: Component<{ text: string; }> = ({ text }) => {
return (
<div>
<span class={styles.spinner}></span>
<span style={{ "padding-left": "16px" }}>{ text }</span>
</div>
)
}