Skip to content

Commit

Permalink
docs: qwik example imports (#5429)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinVandy committed Mar 22, 2024
1 parent 4faa788 commit 313abc7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/qwik/basic/src/main.tsx
Expand Up @@ -8,7 +8,7 @@ import {
getCoreRowModel,
flexRender,
useQwikTable,
} from '../../../../packages/qwik-table/src/index'
} from '@tanstack/qwik-table'

type Person = {
firstName: string
Expand Down
4 changes: 2 additions & 2 deletions examples/qwik/row-selection/src/main.tsx
Expand Up @@ -11,7 +11,7 @@ import {
useQwikTable,
getFilteredRowModel,
ColumnDef,
} from '../../../../packages/qwik-table/src/index'
} from '@tanstack/qwik-table'

import { component$ } from '@builder.io/qwik'

Expand Down Expand Up @@ -157,7 +157,7 @@ const App = component$(() => {
<th
key={id}
onClick$={$(() => {
const thisCol = table.getColumn(id)!
const thisCol = table.getColumn(id)! //avoid serialization error
thisCol.toggleSorting()
})}
colSpan={header.colSpan}
Expand Down

0 comments on commit 313abc7

Please sign in to comment.