1
2
3
4
5
import { bookmarks } from "https://esm.town/v/chase/bookmarks";
export let addBookmark = (data) => {
bookmarks.push({ created: Date.now(), ...data });
};