snipshare
@picabo
Member since February 11, 2026
1 paste ยท 0 collections
import { useState, useMemo } from 'react'; export default function SortableTable({ columns, data }) { const [sort, setSort] = useState({ key: null, dir: 'asc' });