import { atom } from 'recoil' export const searchState = atom({ key: 'searchState', default: { currentPage: 1, totalPage: 1, pageBlock: 100, totalCount: 0, searchValue: '', mainFlag: 'N', searchFlag: false, }, })