import { atom } from 'jotai' export const totalRamAtom = atom(0) export const usedRamAtom = atom(0) export const cpuUsageAtom = atom(0)