next.js / test /e2e /app-document /shared-module.js
AbdulElahGwaith's picture
Upload folder using huggingface_hub
b91e262 verified
let moduleState = 'INITIAL'
export function setState(state) {
moduleState = state
}
export default function currentState() {
return moduleState
}