Skip to content

Commit

Permalink
fix: heading type
Browse files Browse the repository at this point in the history
  • Loading branch information
xmimiex committed Jun 18, 2024
1 parent efb37c3 commit ce79334
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
*/

import { component$, useSignal } from '@builder.io/qwik'
import { Heading, Select } from 'flowbite-qwik'
import { Heading, HeadingTag, Select } from 'flowbite-qwik'
import { staticGenerateHandler } from '~/routes/examples/[theme-rtl]/layout'
import { StaticGenerateHandler } from '@builder.io/qwik-city'

export default component$(() => {
const selected = useSignal('h1')
const selected = useSignal<HeadingTag>('h1')
const sizes = [
{ value: 'h1', name: 'Heading one (H1 - default)' },
{ value: 'h2', name: 'Heading two (H2)' },
Expand Down

0 comments on commit ce79334

Please sign in to comment.