Build 2 started

This commit is contained in:
2021-10-19 14:07:47 -03:00
parent ef9bb00792
commit b9128d737e
27 changed files with 20 additions and 389 deletions

View File

@@ -0,0 +1,13 @@
export const RecoveryCurrentCategory = (setCategory) => {
if (localStorage.getItem('category')) {
if (localStorage.getItem('category') === 'false') {
setCategory(false)
}
setCategory(localStorage.getItem('category'))
localStorage.removeItem('category')
}
}