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