mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-02 12:22:40 +02:00
8 lines
227 B
TypeScript
8 lines
227 B
TypeScript
|
|
import { atom } from "jotai";
|
||
|
|
import type { GetConnectorsRequest } from "@/contracts/types/connector.types";
|
||
|
|
|
||
|
|
export const globalConnectorsQueryParamsAtom = atom<GetConnectorsRequest["queryParams"]>({
|
||
|
|
skip: 0,
|
||
|
|
limit: 10,
|
||
|
|
});
|