Build a TODO App using the Collection-Document Storage Smart Contract
Todo App Data Structure
Todos Collection
interface Todo {
id: string;
text: string;
completed: boolean;
createdAt: number;
}Profiles Collection
Settings Collection
Building the Frontend
Manual Installation
Variable
Description

Last updated
Was this helpful?