mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-02-22 23:42:00 +00:00
25 lines
715 B
TypeScript
25 lines
715 B
TypeScript
|
import type { Device } from "@prisma/client";
|
||
|
import { atom, createStore } from "jotai";
|
||
|
|
||
|
// Create a single store instance
|
||
|
export const store = createStore();
|
||
|
|
||
|
// Create atoms with the store
|
||
|
export const initialPriceAtom = atom(100);
|
||
|
export const discountPercentageAtom = atom(75);
|
||
|
export const numberOfDevicesAtom = atom(1);
|
||
|
export const numberOfDaysAtom = atom(30);
|
||
|
export const formulaResultAtom = atom("");
|
||
|
export const deviceCartAtom = atom<Device[]>([]);
|
||
|
export const cartDrawerOpenAtom = atom(false);
|
||
|
// Export the atoms with their store
|
||
|
export const atoms = {
|
||
|
initialPriceAtom,
|
||
|
discountPercentageAtom,
|
||
|
numberOfDevicesAtom,
|
||
|
numberOfDaysAtom,
|
||
|
formulaResultAtom,
|
||
|
deviceCartAtom,
|
||
|
cartDrawerOpenAtom,
|
||
|
};
|