import type { Component } from "solid-js"
import { Button, Select, Tabs, Tooltip, Fonts } from "./components"
import "./index.css"
const App: Component = () => {
const Content = (props: { dark?: boolean }) => (
Buttons
Select
Tabs
Tab 1
Tab 2
Tab 3
Disabled Tab
Tab 1 Content
This is the content for the first tab.
Tab 2 Content
This is the content for the second tab.
Tab 3 Content
This is the content for the third tab.
Tab 4 Content
This tab should be disabled.
Tooltips
`Dynamic tooltip: ${new Date().toLocaleTimeString()}`} placement="top">
)
return (
<>
>
)
}
export default App