import { router } from "expo-router"; const handleAddItem = (storeKey: string) => { router.push({ pathname: "/item/new/[storeKey]", params: { storeKey: storeKey, }, }); }; export default handleAddItem;