Modals Folder - Zanegerous/CopperToGold GitHub Wiki
The Modals folder is the new folder that contains our modal components This was done as modals act as their own pages, so its easier to work with if they are separated and the items it needs are based to it
<CameraModal cameraOpen={cameraOpen} setCameraOpen={setCameraOpen} takePicture={takePicture} searchBarcodeResult={searchBarcodeResult} setText={setText} setLoadingSymbolState={setLoadingSymbolState} handleSearchOpen={handleSearchOpen} />
` <SearchSettingsModal settingModal={settingModal} // Pass the visibility state setSettingModal={setSettingModal} // Pass the setter function to close the modal auctionSetting={auctionSetting} // Pass auction setting state toggleAuctionSetting={toggleAuctionSetting} // Pass auction toggle function usedItemSetting={usedItemSetting} // Pass used item setting state toggleUsedItemSetting={toggleUsedItemSetting} // Pass used item toggle function />
`