remove debounce in favor of solid-primitive

This commit is contained in:
Chris Kruining 2025-01-08 11:31:16 +01:00
parent caa35c92e9
commit 7e5af28ac2
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
7 changed files with 6 additions and 49 deletions

View file

@ -2,8 +2,9 @@ import { Sidebar } from '~/components/sidebar';
import { CellEditor, Column, DataSetGroupNode, DataSetNode, DataSetRowNode, Grid, GridApi } from '~/components/grid';
import { people, Person } from './experimental.data';
import { Component, createEffect, createMemo, createSignal, For, Match, Switch } from 'solid-js';
import { debounce, MutarionKind, Mutation } from '~/utilities';
import { MutarionKind, Mutation } from '~/utilities';
import { createDataSet, Table } from '~/components/table';
import { debounce } from '@solid-primitives/scheduled';
import css from './grid.module.css';
export default function GridExperiment() {