Does markdown work here
?
here
?- And what about here?
- Possibly.
A fancy | Table
Cult Leader - Aurum Reclusa | |
AXIS - With Grace | |
Nails - Your God | |
Integrity - Simulacra | |
Trap Them - Gift and Gift Unsteady | |
Dead in the Dirt - The Blaring Eye | |
Loma Prieta - Never Remember | |
Creeping Death - Bloodlust Contamination | |
Modern Life Is War - Humble Streets | |
Ceremony - Back In '84 |
Does markdown work here
?
A fancy | Table
function useTableQuery(queryFn, columnDefs, formatApiData, formatParamsToQueryKey) { | |
const [queryKey, setQueryKey] = useState(''); | |
const {data, isLoading} = useQuery(queryKey, () => queryFn({ordering: queryKey.sortBy})); | |
const tableData = useMemo(() => formatApiData(data), [data]); | |
const columns = useMemo(() => columnDefs, [columnDefs]); | |
const fetchData = useCallback((params) => { | |
const paramsToQK = formatParamsToQueryKey(params); |