starchat-ui / utils /app /folders.ts
matthoffner's picture
Duplicate from matthoffner/chatbot
13095e0
raw
history blame
175 Bytes
import { FolderInterface } from '@/types/folder';
export const saveFolders = (folders: FolderInterface[]) => {
localStorage.setItem('folders', JSON.stringify(folders));
};