mirror of
https://github.com/sst/opencode.git
synced 2025-12-23 10:11:41 +00:00
wip: demo fix
This commit is contained in:
parent
d5eb2b0d68
commit
8474cf6279
1 changed files with 13 additions and 15 deletions
|
|
@ -1,21 +1,19 @@
|
|||
import type { Component } from "solid-js"
|
||||
import { createSignal } from "solid-js"
|
||||
import {
|
||||
Accordion,
|
||||
Button,
|
||||
Checkbox,
|
||||
Select,
|
||||
Tabs,
|
||||
Tooltip,
|
||||
Fonts,
|
||||
Dialog,
|
||||
Icon,
|
||||
IconButton,
|
||||
Input,
|
||||
SelectDialog,
|
||||
Collapsible,
|
||||
} from "./components"
|
||||
import "./index.css"
|
||||
import { Button } from "./components/button"
|
||||
import { Select } from "./components/select"
|
||||
import { Fonts } from "./components/fonts"
|
||||
import { Accordion } from "./components/accordion"
|
||||
import { Tabs } from "./components/tabs"
|
||||
import { Tooltip } from "./components/tooltip"
|
||||
import { Input } from "./components/input"
|
||||
import { Checkbox } from "./components/checkbox"
|
||||
import { Icon } from "./components/icon"
|
||||
import { IconButton } from "./components/icon-button"
|
||||
import { Dialog } from "./components/dialog"
|
||||
import { SelectDialog } from "./components/select-dialog"
|
||||
import { Collapsible } from "./components/collapsible"
|
||||
|
||||
const Demo: Component = () => {
|
||||
const [dialogOpen, setDialogOpen] = createSignal(false)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue