diff --git a/src/components/Display/Display.tsx b/src/components/Display/Display.tsx
index 162b8af..bee5a49 100644
--- a/src/components/Display/Display.tsx
+++ b/src/components/Display/Display.tsx
@@ -1,5 +1,6 @@
import './Display.sass'
-import { type JSXElement, Switch, Match } from 'solid-js'
+import { Switch, Match } from 'solid-js/web'
+import type { JSXElement } from 'solid-js'
interface Props {
children: JSXElement
diff --git a/src/components/Input/Input.tsx b/src/components/Input/Input.tsx
index 139823f..823699c 100644
--- a/src/components/Input/Input.tsx
+++ b/src/components/Input/Input.tsx
@@ -1,6 +1,7 @@
import './Input.sass'
import { TextField } from '@kobalte/core/text-field'
-import { Show, type Setter } from 'solid-js'
+import { Show } from 'solid-js/web'
+import type { Setter } from 'solid-js'
interface Props {
label?: string
diff --git a/src/components/Link/Link.tsx b/src/components/Link/Link.tsx
index e191f7a..7674b35 100644
--- a/src/components/Link/Link.tsx
+++ b/src/components/Link/Link.tsx
@@ -1,5 +1,5 @@
import './Link.sass'
-import { A } from '@solidjs/router'
+// import { A } from '@solidjs/router'
interface Props {
to: string
@@ -10,9 +10,9 @@ interface Props {
export default (props: Props) => {
return (
<>
-
+
{props.children}
-
+
>
)
}
diff --git a/src/components/Modal/Modal.tsx b/src/components/Modal/Modal.tsx
index c91b46c..9abb281 100644
--- a/src/components/Modal/Modal.tsx
+++ b/src/components/Modal/Modal.tsx
@@ -1,5 +1,6 @@
import './Modal.sass'
-import { type JSXElement, Show } from 'solid-js'
+import type { JSXElement } from 'solid-js'
+import { Show } from 'solid-js/web'
interface Props {
children: JSXElement
diff --git a/src/components/Modal/ModalButton.tsx b/src/components/Modal/ModalButton.tsx
index ac5ff10..f4622be 100644
--- a/src/components/Modal/ModalButton.tsx
+++ b/src/components/Modal/ModalButton.tsx
@@ -1,5 +1,6 @@
import './Modal.sass'
-import { type JSXElement, Show, createSignal } from 'solid-js'
+import { type JSXElement, createSignal } from 'solid-js'
+import { Show } from 'solid-js/web'
import Button from '../Button/Button'
interface Props {
diff --git a/src/components/Page/Page.tsx b/src/components/Page/Page.tsx
index 789fe9e..13e1653 100644
--- a/src/components/Page/Page.tsx
+++ b/src/components/Page/Page.tsx
@@ -1,5 +1,5 @@
import './Page.sass'
-import { Show } from 'solid-js'
+import { Show } from 'solid-js/web'
interface Props {
children?: any
diff --git a/src/components/Radio/Radio.tsx b/src/components/Radio/Radio.tsx
index 4ff27c2..40b7de9 100644
--- a/src/components/Radio/Radio.tsx
+++ b/src/components/Radio/Radio.tsx
@@ -1,6 +1,7 @@
import './Radio.sass'
import { RadioGroup } from '@kobalte/core/radio-group'
-import { type Setter, For, Show } from 'solid-js'
+import { For, Show } from 'solid-js/web'
+import type { Setter } from 'solid-js'
interface Props {
label?: string
@@ -19,7 +20,7 @@ export default (props: Props) => {
- {(item) => (
+ {(item: any) => (
diff --git a/src/components/Row/Row.tsx b/src/components/Row/Row.tsx
index cf33ba4..308e8ff 100644
--- a/src/components/Row/Row.tsx
+++ b/src/components/Row/Row.tsx
@@ -1,5 +1,6 @@
import './Row.sass'
-import { Show, type JSXElement } from 'solid-js'
+import { Show } from 'solid-js/web'
+import type { JSXElement } from 'solid-js'
interface Props {
children: JSXElement
diff --git a/src/components/Table/Table.tsx b/src/components/Table/Table.tsx
index 3d208d0..c7abe66 100644
--- a/src/components/Table/Table.tsx
+++ b/src/components/Table/Table.tsx
@@ -55,7 +55,7 @@ export default () => {
- {updatedList().map((item) => (
+ {updatedList().map((item: any) => (
| {item.slice(0, 1)} |