import {useContext}from'react';import {TantoContext}from'../contexts/tanto/TantoContext.mjs';function useTanto() {
const context = useContext(TantoContext);
if (context === undefined) {
throw new Error('useTanto must be used within a TantoProvider');
}
return context;
}export{useTanto};