css regx proeprty You could use the ^= ('starts with') and $= ('ends with')
attribute selectors.
[class^="dh-"]{} ---> start with dh
[class$="-bl"]{} ---> end with dl
import { useQuery } from "@tanstack/react-query"; function Users() { const { data, isLoading, isError, error } = useQuery({ ...
No comments:
Post a Comment